@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

header {
  position: fixed;
  width: 100%;
  z-index: 1;
  height: 70px;
  left: 0;
  align-items: center;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(181deg, #7b1fa2, #4d178f);
}

#logo {
  height: 36px;
  padding-left: 30px;
}

.navlist {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.navlist li {
  list-style-type: none;
  margin-right: 10px;
  padding: 10px 20px;
}

.navlist a {
  text-decoration: none;
  font-weight: 400;
  font-family: 'Roboto';
  border-bottom: 1px solid transparent;
  transition: all 0.55s ease-in;
  color: #fff;
}
.navlist a:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
}

#menu-icon {
  color: rgb(255, 255, 255);
  margin-right: 20px;
  z-index: 2;
  font-size: 25px;
  display: none;
  cursor: pointer;
}

@media (max-width: 700px) {
  header {
    background-image: linear-gradient(181deg, #7028ed, #8428ed);
  }
  #menu-icon {
    display: block;
    transition: all 0.34s ease;
  }
  .navlist {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: rgba(205, 117, 252, 0.597);
    align-items: center;
    top: 100%;
    right: -100%;
    padding: 10px 10px;
    transition: all 0.45s ease;
  }
  .navlist li {
    display: block;
    margin: 5px 0;
    align-self: center;
  }
  .navlist.open {
    right: 0;
  }
}
@media (max-width: 500px) {
  #logo {
    height: 30px;
  }
}
