* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #f7f5f3;
    --text-color: #2656a3;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    font-family: 'Josefin Sans', sans-serif;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo {
    max-width: 484px;
    width: 100%;
    height: auto;
}

.contact-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.at {
    position: relative;
    top: -0.05em;
}

@media (max-width: 600px) {
    body {
        display: block;
    }

    main {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo {
        max-width: 280px;
    }

    footer {
        position: static;
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 1.5rem 4rem;
        text-align: center;
    }

    .contact-link {
        font-size: 0.7rem;
    }
}
