html{
    margin: 50px;
    min-width: 400px;
}

body{
    background-color: #F5F5E1;
}
/* Navbar Styling */
nav{
    display: flex;
    font-family:'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    justify-content: space-between;

}

nav ul{
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.nav-items li{
    margin: 20px;
    font-size: 20px;
}

.nav-items li a{
    text-decoration: none;
    color: rgb(47, 47, 47);
}

.logo{
    margin-right: auto;
    font-size: 50px;
    margin-bottom: 0px;
}

.sup-text{
    font-size: 20px;
    margin-top: 0px;
}

/* Body Styling */
.page-el{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-top: 50px;
}

.page-el p{
    text-align: justify;
}

#about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    min-width: 400px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#about h1{
    font-size: 40px;   
}

#about p{
    text-align: justify;
    margin-right: 10px;
    font-size: 15px;
    min-width: 200px;
}

/* Default styles for small devices */
#about img {
    width: 200px;
    height: auto;
    margin-top: 0px;
    margin-left: 10px;
    border-radius: 100%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #about img {
        width: 200px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #about img {
        width: 250px;
    }
}

/* Education styling */
#education h1{
    font-size: 40px;
}

.ed-table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}
.tab-el{
    border: 1px solid rgb(47, 47, 47);
    padding: 8px;
    text-align: center;
}