body {
  font-family: "Open Sans", sans-serif;
  background-image: url("../src/mobile_pattern.svg");
  margin: 0;
  padding: 0;
}

header {
  z-index: 1000;
  border-bottom: 1px solid #444;
  top: 0;
}

.mobile-view-container {
  position: relative;
  text-align: center;
  background: transparent;
}

#logo {
  width: 50%;
  margin: 5px;
}

#hamburger-sign {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: #990000;
}

#topbar-nav {
  display: none;
  visibility: hidden;
  z-index: 1000;
}

#topbar-nav > ul {
  width: 90%;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #000;
}

.nav-item {
  font-size: 1.1rem;
}

.dropdown {
  display: none;
  visibility: hidden;
  list-style: none;
}

.dropdown-container:hover > .dropdown,
.dropdown-container:active > .dropdown {
  display: block;
  visibility: visible;
}

.homepage-header {
  background: url("../src/mobile_pattern.svg");
  background-color: transparent;
}

@media only screen and (min-width: 1000px) {
  body {
    margin: 0;
    padding: 0;
    background-image: url("../src/pattern.svg");
    background-size: 80%;
  }

  header {
    position: fixed;
    height: 12vh;
    top: 0;
    margin: 0;
    padding: 0 10px;
    background-color: #e6e6e6;
    border: none;
  }

  #hamburger-sign,
  .no-show-desktop {
    display: none;
    visibility: hidden;
  }

  .mobile-view-container {
    display: inline-block;
    text-align: left;
    width: 19%;
  }

  #logo {
    width: 100%;
  }

  #topbar-nav {
    display: inline-block;
    visibility: visible;
    width: 79%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .box-shadow-container {
    color: #eee;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 81%;
    margin: 0;
    box-shadow: 9px 9px 9px -9px #000;
  }

  .nav-item {
    margin: 0 10px;
    list-style: none;
    background-color: #251353;
    color: #fff;
    border-radius: 20px;
    padding: 10px;
    font-size: 0.6rem;
    font-weight: bold;
  }

  .nav-list {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    width: 100%;
    font-size: 0.4em;
  }

  .dropdown {
    display: none;
    visibility: hidden;
    background-color: #261354;
    padding: 15px;
    border-radius: 0 35px 35px 35px;
    list-style: none;
    font-weight: 100;
    position: absolute;
  }

  .nav-item:hover > .dropdown {
    display: block;
    visibility: visible;
  }

  .nav-item:hover > .dropdown-header {
    background-color: #261354;
    padding: 15px;
    padding-bottom: 30px;
    border-radius: 20%;
  }

  .dropdown-container:hover {
    background-color: transparent;
  }

  .nav-link {
    color: inherit;
    text-decoration: none;
  }
  .dropdown-list {
    padding: 5px 0;
  }

  .dropdown-list:hover {
    text-decoration: underline;
  }

  .homepage-header {
    background: transparent;
    z-index: 1000;
  }
}

@media only screen and (min-width: 1100px) {
  .nav-item {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .nav-item {
    font-size: 0.9rem;
  }
}
