body{
    background-color: #F1F1EF;
    /* background-color: #F2E9E4; */
    font-family: "Georgia", "Times New Roman", serif;
}
section {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}
@media (max-width: 992px) {
    section {
        scroll-margin-top: 330px;
    }
}

h2{
    font-weight: bold;
}

/* NAVBAR */
.navbar {
    /* background-color: #0A3D62; */
    background-color: #0B1C2D;
}
.navbar .nav-link {
    color: #aaa;;               
}
.navbar .nav-link:hover {
    color: #5f5c5cf8;            
}
.navbar .nav-link.active {
    color: rgb(228, 226, 226);            
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

/* home */

.main-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    min-height: 75vh;
    margin: 2rem;
}
img{
    max-width: 100%;
    height: auto;
}
.text {
    flex: 1;                   
    min-width: 250px;
}

.img-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}
/* .img-container {
    margin-bottom: 1.5rem;
} */

.name{
    /* font-family: Arial, Helvetica, sans-serif; */
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;      
}


/* Mobile / small screens */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-container img {
        max-width: 80%;
        margin-top: 20px;
    }
}

/* ABOUT */

.degree-desc{
    text-align: center;
}
.degree{
    border: 1px solid #333;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    width : 100%;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 2rem auto;
    box-sizing: border-box;
}
.degree:hover{
    box-shadow: 10px 10px 5px grey;
}
.desc{
     margin-top: 7rem;
     max-width: 750px;
     text-align: center;
     line-height: 1.9;
     font-size: 1.4rem;
}
#footer {
    background-color: #0B1C2D;
  color: #aaa;
}

#footer a {
  color: #aaa;
  text-decoration: none;
}

#footer a:hover {
  color: #fff;
}


.courses-title{
    margin-bottom: 2rem;
}
/* Contact */

#contact h2 {
  letter-spacing: 2px;
}

#contact a {
  text-decoration: none;
}
#contact{
    min-height: 72vh;
}