html {
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 2000px) {
    html {
        font-size: 1vw;
    }
}

p {
    line-height: 1.5;
    margin-bottom: 1rem; /* 16px, body font-size fele */
}

h1 {
    text-transform: uppercase;
    color: #ffffff;
    /* font-size: 1.625rem; */
    font-size: 30px;
    padding: 7px 0 10px 7px;
    background-color: #590C69;
    margin: 50px 0 35px 0;
    width: 430px;
    border-radius: 2px;
    margin-left: calc(5%);
}

@media screen and (max-width: 809px) {
    h1 {
        font-size: 20px;
        margin-left: 0;
        width: 100%;
    }
}

h3 {
    font-size: 24px;
    text-transform: none;
}

h5 {
    font-size: 20px;
    text-transform: none;
}

h6 {
    font-size: 16px;
    text-transform: none;
    margin-top: 10px;
    float: right;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}