
.top-container 
{
    background-color: #f0f0f0;
    font-family: 'Muli', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap; 
}

body 
{
    font-family: 'Muli', sans-serif;
    background-color: white;
}

.header 
{
    border-radius: 25px;
    font-family: 'Muli', sans-serif;
    padding: 10px 16px;
    background-color: #f0f0f0;
    color: black;
}

footer
{
  padding: 10px 16px;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

h3 
{
  font-size: 14px;
}

.sticky 
{
  position: fixed;
  top: 0;
  width: 100%
}

.sticky + .content 
{
  padding-top: 102px;
}

p 
{
    font-size: 16px;
    padding-left: 100px;
    font-family: 'Muli', sans-serif;
    color: black;
}

h2 
{
    background-color: #f0f0f0;
    font-family: 'Muli', sans-serif;
    padding-left: 40px;
}

.skills 
{
    padding-left: 100px;
    display: flex;
    flex-direction: column;
}

.internships 
{
    display: flex;
    flex-direction: column;
}

.internship-location 
{
    padding-left: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    color: rgb(95, 95, 95);
}

.internship-position 
{
    padding-left: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: black;
}

.internship-description 
{
    padding-left: 100px;
    display: flex;
    flex-direction: column;
}

.projects
{
    display: flex;
    flex-direction: column;
}

.project-title
{
    font-size: 20px;
    padding-left: 60px;
}

.project-description 
{
    font-size: 18px;
    padding-left: 100px;
}

.education 
{
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.school 
{
    padding-left: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    color: black;
}

.degree 
{
    display: flex;
    padding-left: 60px;
    font-size: 18px;
    justify-content: space-between;
}

.about-me:hover
{
    color: rgb(60, 160, 102);
}

.about-me
{
    font-size: 48px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

a
{
  color: black;
}

a:hover
{
  color: blueviolet
}


.sidenav 
{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #f0f0f0;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.sidenav a 
{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #000000;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover 
{
    color: #6d6d6d;
}

.sidenav .closebtn 
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main 
{
    transition: margin-left .5s;
    padding: 20px;
}

@media screen and (max-height: 450px) 
{
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

img.rou 
{
    padding-top: 20px;
}