@import url(https://fonts.googleapis.com/css2?family=Vollkorn+SC&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Vollkorn&display=swap);


html {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
  width: 100%;
  margin: 0;
  background-color: lightsteelblue;
}

p {
  font-family: Nunito;
}

.fullPage {
  background-color: #b0c4de;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
} 
.container {
    padding-top: 3em;
    background-color: lightsteelblue;
}




/*Header and Navbar*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  height: 4em;
  background-image: linear-gradient(to right, #1f4287, #000033);
  color: white;

  
}
.desktopHeader {
  height: 100%;
  padding: 0px 3em;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  
}

.menuOption {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1em;
  width: 4em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.menuOption:hover {
  color: orange;
  background-color: #1c1c4e;
  box-shadow: 0px 2px 5px rgb(41, 41, 41);
}


.effectBar {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 0;
  background-color: orange;
  width: 0px;
  transition: 0.2s ease-out;
}

.menuOption:hover .effectBar {
  width: 6em;
}

.titleContainer {
  display: flex;
  align-items: center;
}

.desktopMenu {
  display: flex;
  align-items: center;
}

#title {
  font-size: 2em;
  font-family: 'Vollkorn SC', serif;
  padding-left: 10px;
  transition: color 0.3s, text-shadow 0.3s;
  cursor: pointer;

  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.titleContainer:hover {
  text-shadow: 0px 2px 5px rgb(17, 17, 17);
  color: orange;
}

input {
  padding: 0.7em;
  border: unset;
  border-radius: 5px;
  box-shadow: inset 1px 1px 3px rgb(190, 190, 190);
}

header button {
  font-family: arial;
  background-color: steelblue;
  padding: 0.7em;
  border-radius: 5px;
  border: unset;
  transition: background-color 0.1s;
}

header button:hover {
  background-color: rgb(45, 99, 143);
  cursor: pointer;
}

.logo {
  height: 3.3em;
}

/*Top Navigation Bar Styles*/
    .topnav a:hover {
    color: #f1f1f1;
     }
  
    .topnav {
        height: 0px;
        width: 300px;
        position: fixed;
        z-index: 1;
        background-color: #111;
        overflow-y: hidden;
        transition: 0.5s;
  }

  #navButton {
       text-align: right;
        }

  .topnav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  /*@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }*/

  @media only screen and (max-width: 600px) {
    header {
      height: 3em;
    }
    #title {
        display: none;
    }

    .desktopHeader {
      padding: 0px 10px;
    }

    .logo {
      height: 2.5em;
    }
  }

@media only screen and (max-width: 900px) {
    .desktopMenu  {
      display: none;
    }
}