/*
    Sets the background color of the entire webpage
*/
body {
    background-color: #FBFAF5;
    line-height: 1.4;
}

/*
    Centers the navbar horizontaly on the webpage
*/
.topnav {
    width: 100%;
    align-content: center;
    padding-top: 1em;
    padding-bottom: 2em;
}

ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

li {
    list-style-type: none;
    margin: 0 2vh;
    font-size: 2.2vh;
    display: inline-block;
}

/*
    Sets the  color of the navbar links to black
*/
a {
    text-decoration: none;
    color: black;
    padding-top: 1vh;
}

/*
    Underlines and sets the color of links to red 
    when hovered over by the cursor 
*/
a:hover {
    text-decoration: underline;
    color: crimson;
}

/*
    Sets the size and font of the Ipek Tureli
    name link
*/
#name {
    font-family: 'Raleway';
    font-size: 40px;
}

/*
    Sets the font family of the other links
*/
.nav-link {
    font-family: "Raleway";
}

/*
    Sets the color of the active webpage link to red
*/
.is-active {
    color: crimson;
}

/* Add a black background color to the top navigation */
.topnav {
    overflow: hidden;
}
  
  
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav li:not(:first-child) {display: none;}
    .topnav a.icon {
      display: inline-block;
    }
  }
  
@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: relative;
    }
    .topnav.responsive li {
        float: none;
        display: block;
        text-align: center;
    }
}