*, *::before, *::after{
    margin: 0;
    padding: 0;
}

html{
    font-size: 62.5%;
    display: flex;
}

body{
    font-size: 1.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    flex: 1;
    background: url(./images/photoholgic-RGvwatYi0-Q-unsplash.jpg);
    background-position: center bottom -450px;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: grayscale(.4);
}

a{
    text-decoration: none;
    color: #000000;

    &:hover{
        color: #101010;
        text-decoration: underline;
    }
}

.logo-wrap{
    position: relative;
    margin-bottom: 240px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;

    img{
        width: 85%;
    }

    span{
        font: inherit;
        font-style: italic;
        font-size: clamp(.6rem, 70dvw, 2rem);
        font-weight: 600;
        position: absolute;
        bottom: 0em;
        right: 1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

.bold{
    font-weight: 600;
}

.container{
    display: flex;
    flex-flow: row;
    height: 100dvh;
    width: 100dvw;

    &.center{
        align-items: center;
        justify-content: center;
    }
}

.flex{
    display: flex;
    flex-flow: row wrap;
    align-items: center;

    &.justify-center{
        justify-content: center;
    }
}

footer{
    position: absolute;
    bottom: 0;
    font: inherit;
    padding-block: 24px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #d8d8d8;
    color: #d8d8d8;
    background: #10101093;

    a{
        text-decoration: none;
        color: #d8d8d8;

        &:hover{
            color: #FFFFFF;
            text-decoration: underline;
        }
    }

    ul{
        font-size: 2rem;
        list-style: none;
        display: flex;
        gap: 1em;
        flex: 1 0 100%;
        justify-content: center;
        margin-bottom: .5em;
    }
}