@import url("https://fonts.googleapis.com/css2?family=Creepster&family=Dhurjati&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Creepster&family=Dhurjati&family=Roboto:wght@900&display=swap");
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #020a13;
}
header {
  background-color: #020a13;
  width: 100%;
  /* margin-top: 1%; */
  /* margin-top: 0.4%; */
  /* height: auto; */
  /* height: 6.5vh; */
}
nav {
  margin: 0 auto;
  width: 80%;
  height: auto;
  /* height: 7vh; */
  padding: 0;
}
nav > ul {
  list-style: none;
  /* height: 6.5vh; */
  height: 17.5vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
nav > ul > li {
  color: aliceblue;
  font-size: 20px;
  font-family: "Roboto";
  padding: 2% 0%;
}
.menu {
  font-size: 24px;
  margin-bottom: 22px;
}
.menu-logo {
  font-size: 15px;
}
/* .logo-img {
  margin-top: 12px;
} */

nav.drop-down {
  /* background-color: #ffc650; */
  background-color: #ffc041;
  text-align: center;
  top: -100vh;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  h3 {
    position: absolute;
    color: #204056;
    top: 15%;
    right: 10%;
    font-size: 2.3rem;
    &:hover {
      color: red;
    }
  }
}
.hidden-nav {
  flex: 2;
  display: block;
  height: auto;
}
nav.drop-down li {
  /* line-height: 30px; */
}

nav.drop-down a {
  text-decoration: none;
  color: #204056;
  font-weight: bold;
  font-size: 25px;
  text-transform: uppercase;
  &:hover {
    /* color: #d05353; */
    color: #3fb950;
  }
}

.social-links {
  width: 100%;
  display: block;
  height: auto;
  flex: 1;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.left-links {
  flex: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  h5 {
    font-family: cursive;
    font-size: xx-large;
    color: #204056;
    &:hover {
      color: #3fb950;
    }
  }
}
.left-links > ul {
  list-style: none;
  padding: 2%;
}
.left-links > ul > li {
  padding: 0% 3%;
}

.error-field {
  /* width: 60%; */
  /* margin: auto; */
  text-align: left;
  color: red;
  display: none;
}

/* Suceess Fully Sent  */

@media only screen and (max-width: 211px) {
  nav > ul {
    height: 20%;
    justify-content: center;
    margin-top: 3%;
  }
  .logo {
    display: none;
  }
  .left-links {
    h5 {
      font-size: large;
    }
  }
}
