@font-face {
    font-family: test;
    src: url("../font/LetoSlab-Regular.woff");    
}

@font-face {
    font-family: thin;
    src: url("../font/LetoSlab-Thin.woff");
}

body{
    font-family: test;
}
#menu{
    position:absolute;
    top:3%;
    right:7%;
    font-size:40px;
}

.list{
    width:125%;
    font-family: test;
    border: 2px solid black;
    line-height: 76px;
    font-size:38px;
    background-color:black;
    color:white;
}

#cont{
    width: 85%;
    margin:auto;
    text-align: center;
}
.title{
    font-size:35px;
}
.size{
    font-size:25px;
}
.space{
    column-gap: 2em;
}
.mobile{
    display:none;
}
@media screen and (min-width: 1480px) and (max-width: 1670px) {
    .list{
        line-height: 70px;
        font-size:34px;
    }
}
@media screen and (min-width: 1225px) and (max-width: 1480px) {
    .list{
        font-size:28px;
        line-height: 60px;
    }
    .title{
        font-size:30px;
    }
    .size{
        font-size:20px;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1225px) {
    .list{
        font-size:23px;
        line-height: 50px;
    }
    .title{
        font-size:25px;
    }
    .size{
        font-size:15px;
    }
}
@media screen and (max-width: 1000px) {
    .list{
        font-size:8px;
        line-height: 20px;
    }
    .title{
        font-size:15px;
    }
    .size{
        font-size:9px;
    }
    .space{
        column-gap: 1em;
    }
    .mobile{
        display:block;
    }
    #cont{
        width: 98%;
    }
}