*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Gothic",sans-serif;
    transition: 0.4s;
}

a{
    text-decoration: none;
    color: #fff;
}

/* Navbar */

.navlist{
    width: 100%;
    padding: 5px 10vw;
    background-color: rgba(18, 18, 39, 0.8);
    color: white;
    font-size: 20px;
    position: fixed;
    z-index: 10;
}

.navlist ul{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: right;
}


.navlist ul li:first-child{
    margin-right: auto;
    
}
.navlist ul h4{
    font-family: serif;
}

.navlist ul a{
    margin-left: 20px;
    font-size: 20px; 
}

.navlist ul a:hover{
    color: #f80;
}
.navlist ul li img{
    width: auto;
    height: 75px;
    margin-right: 20px;
    margin-left: 0;
    
}

/* Container */

.container{
    width: 100%;
    height: 80vh;
    padding-top: 30vh;
    background-image: linear-gradient(#222222c3,#232323c3),url("../images/campus.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
}

.container h1{
    font-family: serif;
    font-size: 100px;
    margin-bottom: 20px;
    word-spacing: 5px;
    color: #f80;
}

.container p{
    margin-bottom: 30px;
    letter-spacing: 2.5px;
    font-size: 20px;
}

.container button{
    padding: 10px;
    background: transparent;
    /* border-radius: 7px; */
    border: 1px solid #f80;

}
.container button:hover{
    background: #f80;
}
.container button a{
    font-size: 20px;
    font-weight: bold;
}
/* Footer */

footer{
    margin-top: 40px;
    background: #ccc;
}

footer>h2{

    text-align: center;
    color: #f80;
    padding: 10px;
    /* margin: 20px; */
}
footer>h5{
    text-align: center;
    padding-bottom: 10px;
    /* color: #f80; */
    /* margin: 20px; */
}

footer ul{
    display: flex;
    justify-content: center;
}


footer ul li{
    margin: 8px;
    list-style: none;
    justify-content: center;
}

/* courses */

.courses{
    display: flex;
    overflow: hidden;
}
.courses .course{
    width: 30%;
    margin: 20px;
    padding: 20px;
    background: #f80;
    border-radius: 10px;
    box-shadow: 0 0 10px #f80;
    transition: 0.4s;

}
.course:hover{
    transform: scale(1.1);
    box-shadow: 0 0 20px #f80;

}

.course h2{
    text-align: center;
}

.course p{
    margin: 10px 10px 20px 10px;
}