body {
    font-family: 'IBM Plex Serif', serif;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px;
    line-height: 1.6;
    font-size: 16px;
    background: #000;
}

nav {
    padding: 20px 40px;
    height: 104px;
    display: grid;
    border-bottom: 1px solid #FFF;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}
.col-1, .nav-col-1 {
    grid-column: 1/2;
    align-self: center;
    justify-self: start;
}
.col-2, .nav-col-2 {
    grid-column: 2/3;
    justify-self: end;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.5rem, 0.5vw + 0.4rem, 0.875rem);
    color: #FFF;
    align-self: center;
}
.friction-logo-img img {
    width: 53px;
}
.white-text {
    color: #FFF;
}
.text-center {
    text-align: center;
}
.h1-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 2.5vw + 1rem, 6rem);
    font-weight: 400;
    color: #FFF;
    margin-bottom: 0px;
}
.italic-text {
    font-style: italic;
}
.inter-text {
    font-family: 'Inter', sans-serif;
}
.text-size-24 {
    font-size: clamp(0.8875rem, 1.25vw + 0.3rem, 1.5rem);
}
.justify-right {
    text-align: right;
    justify-self: end;
}
.justify-left {
    text-align: left;
    justify-self: start;
}
.two-column-grid {
    justify-self: center;
    display: grid;
    grid-template-columns: fit-content(450px) fit-content(450px);
    gap: 40px;
}
.text-light {
    font-weight: 100;
}
.pad-top-0 {
    padding-top: 0px;
}
.pad-bottom-40 {
    padding-bottom: 40px;
}
.white-background-section {
    background: #FFF;
    padding: 60px 20px;
}

@media screen and (max-width: 1025px) {
    body {
        max-width: 1025px;
        line-height: 1.3;
    }
    nav {
        padding: 15px 40px;
        height: 80px;
    }
    .col-1 {
        justify-self: end;
    }
    .col-2 {
        justify-self: start;
    }
    .col-1, .col-2 {
        padding: 10px 45px;
    }   
    .two-column-grid {
        column-gap: 20px;
}

@media screen and (max-width: 479px) {
    body {
        max-width: 479px;
        line-height: 1;
    }
    nav {
        padding: 10px 15px;
        height: 60px;
    }
    .friction-logo-img img {
        width: 33px;
    }
    .col-1 {
        align-self: center;
        justify-self: center;
    }
    .col-2 {
        grid-column: 1/2;
        align-self: center;
        justify-self: center;
    }
    .col-1, .col-2 {
        padding: 10px 25px;
    }   
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}