@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");


/* - - - - - - - - - BODY - - - - - - - - - */

body {
  font-family: "Roboto", sans-serif;
  background-color: whitesmoke;
}

/* - - - - - - - - - HEADER - - - - - - - - - */

header {
  background-color: lightgray;
  padding: 20px;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 75px;
  width: auto;
  min-width: 50px;
}

/* - - - - - - - - - DESKTOP NAV - - - - - - - - - */

.desktop-nav {
  display: flex;
  gap: .5rem;
}

.desktop-nav-link {
  padding: .5rem;
  transition: all 500ms;
}

.desktop-nav-link:hover {
  color: green;
}

@media (max-width: 640px){
  .desktop-nav{
    display: none;
  }
}

/* - - - - - - - - - MOBILE NAV - - - - - - - - - */

.hamburger-icon {
  font-size: 2rem;
  transition: all 500ms;
  display: none;
}

.hamburger-icon:hover {
  color: red;
}

@media (max-width: 640px){
  .hamburger-icon{
    display: block;
  }
}

.mobile-nav-container {
  background-color: #808080;
  color: white;
  font-size: 1.5rem;
  
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right:0;
  
  display: none;
  justify-content: center;
  align-items: center;
}

.mobile-nav{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.mobile-nav-link {
  transition: all 500ms;
}

.mobile-nav-link:hover {
  color: blue;
}

/* - - - - - - - - - CLOSE BUTTON - - - - - - - - - */

.close-button {
  font-size: 2rem;
  transition: all 500ms;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 20px;
}

.close-button:hover {
  color: red;
}