@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://db.onlinewebfonts.com/c/80b073f3ac99d1bd9ca825bde3d544bd?family=Klavika-Light');
@import url('https://fonts.googleapis.com/css2?family=Neonderthaw&display=swap');
@import "adminpage.css";
@import "lineuppage.css";

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Klavika-Light";
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    color: #042A2B;
}
body{
    background: #F7F3E3;
}
.page{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.subpage{
    padding: 3% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.textblock{
    width: 55vw;
}
.title{
    font-size: 1.7em;
    font-family: "DM Serif Display", serif;
    margin-bottom: 2%;
    padding-bottom: 1%;
    border-bottom: #06BCC1 solid 3px;
    text-align: center;
    margin-top: 7vw;
}
.title:first-child{
    margin-top: 3vw;
}
.text{
        color: #685762;
}

@media screen and (max-width: 1270px){
    .textblock{
        width: 65vw;
    }
}

@media screen and (max-width: 1024px){
    *{
        font-size: 20px;
    }
}
@media screen and (max-width: 800px){
    .textblock{
        width: 75vw;
    }
}
@media screen and (max-width: 724px){
    .textblock{
        width: 85vw;
    }
    *{
        font-size: 18px;
    }
    .title{
        font-size: 1.4em;
    }
}