@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    font-family: "Roboto", sans-serif;
}

body{
    margin: 0;
    /* background-color: #350000; */
    background-color: #e8e9e9;
}

.color-yellow{
    color: #F7E30A;
}

.gradient1{
    background: linear-gradient(to bottom, #CA153D, #A51133);
}

.gradient2{
    background: linear-gradient(to bottom, #8BC100, #8CC300);

}
.gradient3{
    background: linear-gradient(to bottom, #2E6BC0, #22539A);

}
.gradient4{
    background: linear-gradient(to bottom, #F9A41C, #F29118);

}
.gradient5{
    background: linear-gradient(to bottom, #A63D07, #933508);

}

.gradient6{
    background: linear-gradient(to bottom, #fccb38, #dd9907);
}

.gradient7{
    background: linear-gradient(to bottom, #e74f3e, #7c0206);
}

.color-white{
    color: #fff;
}

.content{
    max-width: 1000px;
    background-color: #660000;
    margin: 0 auto;
}

.schedule{
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 20px;
}

.slide-text{
    font-size: 20px;
}

.white-line{
    height: 6px;
    width: 100%;
    background-color: #fff;
}

.login{
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    padding: 10px 5px;
}
.login .big-input{
    border-radius: 5px;
}

.login .small-input{
    width: 50px;
    border-radius: 5px;
}

.bottom-links{
    display: flex;
    justify-content: space-evenly;
    font-weight: bold;
    font-size: 20px;
    padding: 15px 10px;
    color: #F7E30A;
}

.bottom-links a{
    color: #F7E30A;
    text-decoration: none;
}

.bottom-links a:hover{
    color: #fffbd2;
    text-decoration: none;
}

.footer{
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
    color: #020202;
}

.footer a{
    color: #070707;
    font-size: 12px;
    text-decoration: none;
}

footer a:hover{
    color: #fffbd2;
}

@media only screen and (max-width: 600px) {
    .content {
        width: 100%;
    }

    .schedule{
        font-size: 7px;
    }

    .slide-text{
        font-size: 8px;
    }

    .login{
        font-size: 7px;
    }
    .login .big-input{
        width: 80px;
    }

    .login .small-input{
        width: 40px;
    }

    .login button{
        height: 15px;
        font-size: 7px;
    }

    .bottom-links{
        font-size: 8px;
    }

    .footer p{
        font-size: 7px;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #000;
    padding: 1px 5px;
    text-align: center;
}

th {
    background-color: #FEC224;
}


.color-white h2 {
    margin: 0;
    color: white;
}

table input{
    max-width: 40px;
    border-radius: 4px;
}

.name{
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

table .name .firstname{
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

table .name .lastname{
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    th, td {
        font-size: 7px;
        padding: 2px;
    }

    input[type="text"] {
        height: 15px;
        width: 100%;
        box-sizing: border-box;
    }


    table .name .firstname{
        font-size: 10px;
    }

    table .name .lastname{
        font-size: 7px;
    }
}

.result-container{
    padding: 10px 0px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #000;
}

.result-header{
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #F7F2CB;
}

.result-table-header{
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    border: 2px solid #fff;
}

.result-table th, td{
    padding: 5px;
    font-weight: bold;
}
