/* Colors */
:root {
    --background-color: rgb(243, 240, 232);
    --font-family: "Inter", Arial, sans-serif;
}
@font-face {
    font-family: "Inter";
    src: url(../assets/fonts/Inter/Inter-VariableFont_slnt\,wght.ttf) format("truetype");
}

/* Mobile Layout */
footer h1 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
ul img {
    width: 25px;
    margin: 0 10px;
}
#circle {
    width: 100vw;
    height: 100vw;
}

@media (min-width: 426px) {
    footer h1 {
        font-size: 20px;
    }
    ul img {
        width: 40px;
    }
}
@media (min-width: 800px) {
    footer h1 {
        font-size: 32px;
    }
    ul img {
        width: 50px;
    }
    #circle {
        width: 800px;
        height: 800px;
    }
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    font-family: var(--font-family)
}

#circle {
    background-color: var(--background-color);
    border-radius: 100%;
    
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    flex-shrink: 0;
}

.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


#logo {
    grid-row: 2;
    margin: 0 10%;
}

footer {
    grid-row: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15%;
}

ul {
    list-style: none;
    width: 30%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
ul img {
    /* width: 50px; */
    transition: filter .25s;
}
ul img:hover {
    filter:opacity(.5);
}