@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body {
    background-color: #ec8c1c;
    color: #000000;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

header {
    margin-top: 50px;
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
}

nav {
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid #000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

nav ul li {
    border-bottom: 1px solid #000;
}

nav ul li a {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: #000;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

nav ul li a:hover {
    background-color: #000;
    color: #fff;
}

main {
    max-width: 800px;
    width: 90%;
    padding: 40px 0;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}

footer {
    margin-top: auto;
    padding: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
