@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Staatliches&family=Story+Script&display=swap');

:root {
    box-sizing: border-box;
    margin: 5em;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    font-family: 'Staatliches', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    background: linear-gradient(white, #58151c);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#year{
    display: flex;
    justify-content: center;
    font-family: 'Staatliches', sans-serif;
    color: white;
}

footer {
    max-width: 1080px;
    margin: 0 auto;
    text-align: start;
    background: #58151c;
    color: white;
    padding: 1em;
    display: flex;
    font-family: 'Staatliches', sans-serif;
    margin-top: 1.5em;
}

.container h1{
    color: #58151c;
    margin-bottom: 0.5em;
}

nav{
    max-width: 1080px;
    margin: 0 auto;
    font-family: 'Staatliches', sans-serif;
}

.tornasu {
    font-size: 30px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    :root {
        margin: 1em;
    }

    .container {
        padding: 0 0.75em;
    }

    .container h1 {
        font-size: 1.75rem;
        margin-bottom: 1em;
    }

    footer {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1em;
        padding: 1.25em;
    }

    footer .socials {
        align-self: center;
    }

    #year {
        font-size: 0.85rem;
        padding: 0 0.5em;
    }
}

@media screen and (max-width: 480px) {
    :root {
        margin: 0.5em;
    }

    .container h1 {
        font-size: 1.5rem;
    }

}