body, * {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

body {
    background-color: #000
}

nav {
    position: absolute;
    top: 90px;
    left: 90px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

nav span {
    color: #000;
        font-size: 18px;
        mix-blend-mode: multiply;
        letter-spacing: 2px;
}

#client {
    overflow: auto;
    height: 100vh;
    width: 100vw;
    scroll-snap-type: y mandatory;
    flex-flow: column nowrap;
}

.client {
    font-size: 3rem;
    padding: 60px;
    margin: 30px;
    height: calc(100vh - 180px);
    border-radius: 10px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: no-repeat;
    background-position: center center;
    background-size: cover;
}

.client > div {
    margin-top: 2rem;
}

.headquarters {
    font-size: .75rem;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info {
    font-size: 2rem;
    max-width: 640px;
}

.links {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.type {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    background-color: white;
    border-radius: 1rem;
    opacity: .4;
}

.website {
    font-size: 1rem;
}

.view {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 24px;
    flex-basis: auto;
    width: 120px;
    text-align: center;
}


@media (max-width: 1440px) {
    body, * {
        font-size: 12px;
    }
}

@media only screen and (max-width: 600px) {

    nav span {
        font-size: 14px;
    }

    .client {
        font-size: 3rem;
        padding: 30px 30px 120px 30px;
        height: calc(100vh - 150px);
        margin: 0;
        border-radius: 0;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        background: no-repeat;
        background-position: top center;
        background-size: 150%;
    }

    nav {
        position: absolute;
        top: 30px;
        left: 0px;
        padding: 8px 8px 8px 30px;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
    }
    
    nav span {
        color: #000;
        font-size: 14px;
        mix-blend-mode: multiply;
        letter-spacing: 2px;
    }
}