h1{
    font-size: 6.5rem;
}

h2{
    font-size: 5rem;
}

h3{
    font-size: 3rem;
}

h4{
    font-size: 2rem;
}

h5{
    font-size: 1.3rem;
}

p{
    font-size: 16px;
}

li{
    font-size: 16px;
    font-weight: bold;
    list-style: square
}

.brand-name{
    color: var(--pur);
}

.brand-motto{
    letter-spacing: 7px;
}

.center-text{
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}

.right-text{
    margin-left: auto;
}

.text-box{
    display: grid;
    grid-gap: 7px;
}

.user-text-view{
    max-width: 1200px;
}

@media screen and (max-width:1200px){
    h1{
        font-size: 5.5rem;
    }

    h2{
        font-size: 4rem;
    }

    h3{
        font-size: 2.5rem;
    }

    h4{
        font-size: 2rem;
    }
    
    .user-text-view{
        max-width: 800px;
        padding-bottom: 3rem;
    }

}

@media screen and (max-width: 650px){
    h1{
        font-size: 4rem;
    }

    h2{
        font-size: 2.8rem;
    }

    h3{
        font-size: 2rem;
    }

    h4{
        font-size: 1.5rem;
    }

}

@media screen and (max-width: 450px){
    h1{
        font-size: 3rem;
    }

    h2{
        font-size: 2.2rem;
    }

    h3{
        font-size: 1.7rem;
    }

    h4{
        font-size: 1.2rem;
    }
    
    li{
        font-size: 15px;
    }
    
    p{
        font-size: 14px;
    }

}