*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body{
    background-color: rgba(226, 226, 226, 0.842);
}
#Courses{
    transform: translateY(-30px);
}
.Courses-Head{
    font-family: Lora;
    font-size: 48px;
    text-align: center;
}
.box-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 2%;
    justify-content: space-evenly;
}
.small_container{
    display: flex;
    flex-direction: column;
}
.c-bo{
    background-color: #f5c379;
    width: 600px;
    height: 100%;
    margin: 0% auto;
    border: 2px solid black;
    border-radius: 20px;
    font-size: 20px;
    margin-bottom: 2%;
}
.c-bo ul{
    display: flex;
    flex-direction: column;
    margin: 0%;
    padding-bottom: 2%;
}

.c-bo h3{
    font-size: 22px;
    padding: 1%;
}
.c-bo ul li{
    margin: 0%;
    padding:0% 2%;
    cursor: default ;
}
.bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    padding-bottom:2% ;
    text-align: center;
    align-items: center;
}
.bottom h3{
    font-size: 24px;
}


.btn{
    background-color: black;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0% 10%;
    height: 40px;
    width: 200px;
    cursor: pointer;

}
@media only screen and (max-width: 1080px ){
    .c-bo{
    width: auto;
}
.btn{
    width:auto;
}
}
