*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
img{
    max-width: 100%;
}
body{
    background-color: #ffe7f2;
}
header{
    background-color: #f291bc;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    max-width: 180px;
}
nav{
    position: fixed;
    top: 61px;
    left: -100%;
    bottom: 0;
    width: 70%;
    padding: 40px 15px;
    background-color: #f4bbd4;
    overflow: auto;
    transition: left .2s ease-in;
    z-index: 9999999;
}
.linkCNav{
    display: flex;
        flex-direction: column;
    gap: 40px;
}
.linkCNav a{
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 4px 14px;
    color: #333;
    text-decoration: none;
    text-align: center;
}
.toggler{
    width: 40px;
    height: 40px;
    position: relative;
}
.bar{
    position: absolute;
    height: 2px;
    width: 40px;
    display: block;
    background-color: #333;
    left: 0;
    transition: left .2s ease-in;
}
.bar1{
    top: 0;
}
.bar2{
    top: 19px;
}
.bar3{
    bottom: 0;
}
.toggler.activemenu .bar1{
    left: -8px;
    top: 19px;
    width: 56px;
    transform: rotate(45deg);
}
.toggler.activemenu .bar2{
    display: none;
}
.toggler.activemenu .bar3{
    left: -8px;
    bottom: 19px;
    width: 56px;
    transform: rotate(-45deg);
}
main{
    max-width: 1100px;
    margin: auto;
}
.right{
    text-align: right;
}
.center{
    text-align: center;
}
.intro{
    margin: auto;
    max-width: 650px;
}
.intro h1{
    margin-top: 20px;
    color: rgb(0, 96, 75);
    font-size: 20px;
}
.theweg{
    color: #333 !important;
}

.blue{
color: blue !important;
}
.computerLine{
    text-align: center;
    padding: 20px;
}
.computerLine p{
    color: #b0004f;
    margin: 15px auto 30px auto;
    text-align: center;
}
.dgreen{
    color: green;
}
.linec1, .qual{
    animation: changeColor 1s infinite;
}
.qual{
    margin-top: 10px;
}
.scholarship{
    margin-top: 20px;
    background-color: #f291bc;
}
.sctitle{
    background-image: linear-gradient(to right,rgb(212, 212, 255), #ffd7e9, rgb(255, 255, 142), rgb(255, 166, 166));
    color: #fc00fc;
    text-align: center;
    padding: 10px 30px 10px 15px;
    text-shadow: 1px 1px #fff;
    border-bottom: 10px solid #fc00fc;
}

.student{
    margin-top: 10px ;
    text-align: center;
    padding: 15px;
    border: 3px solid #b0004f;
    background-color: #f291bc;
    color: #333;
}
.stuname{
    color: #b0004f;
    font-size: 50px;
    margin-top: -40px;
}
.coach{
    margin-top: 10px;
}
@keyframes changeColor {
    0%{
        color: rgb(255, 0, 0);
    }
    100%{
        color: rgb(31, 0, 209);
    }
}
@media only screen and (min-width: 850px) {
    nav{
        position: initial;
        padding: 0;
        background-color: transparent;
        width: initial;
    }
    .linkCNav{
        flex-direction: row;
        align-items: center;
    }
    .toggler{
        display: none;
    }
}
.newBatch{
    text-align: center;
}
.newBatch h3{
    border-color:5px solid #3220a5;
    color: #e6cf20;
    background: linear-gradient(135deg,rgb(31,0,187) 0%,rgb(60,41,0) 100%);
    margin: 10px auto;
    border-radius: 15px;
    padding: 10px;
}
input, button{
    display: block;
    width: 100%;
    padding: 10px;
}
button{
    width: initial;
    background-color: #720072;
    color: #fff;
}
.title{
    font-weight: initial;
    margin: 10px auto;
    text-align: center;
}
.inp-cont{
    margin: 10px auto;
}
.success{
    padding: 20px;
    text-align: center;
    color: green;
}
table{
    border-collapse: collapse;
}
td,th{
    border: 1px solid grey;
    padding: 5px;
}
tr:nth-child(odd){
    background-color: #ddd;
}
.tcont{
    max-width: 100vw;
    overflow: auto;
}