@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');


body {
    min-height: 100vh;
    width: 100vw;
    background: url(./img/bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    font-family: 'Inter', sans-serif;
}

.content {
    margin: auto;
    width: 500px;
    max-width: 100%;

    padding: 0 1.25rem;

    @media (max-width: 1600px){
        width: 400px;
    }
}

.brand {
    display: flex;
    justify-content: center;
    max-width: 100vw;
    overflow: hidden;
}

.logo img {
    width: 100%;
}

.separator {
    object-fit: contain;
    max-width: 100vw;
    width: 100%;
}

.social {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    
}

.link {
    background: url(./img/item.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: auto;
    aspect-ratio: 315 / 83;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1.25rem;
    gap: .625rem;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 1.888px 0.629px #712508;
    font-size: 1.25rem;
    transition: transform 150ms ease;
    cursor: pointer;
}

.link:hover {
    transform: scale(1.03);
}

.link img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}