@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  height: 100vh;
  background: #eeedff;
  position: relative;
  overflow: hidden;
}

.menu-icon {
  width: 35px;
  position: absolute;
  top: 5%;
  right: 10%;
  cursor: pointer;
}

.menu-box {
  width: 80%;
  background: #242449;
  position: absolute;
  top: 17%;
  left: 10%;
  padding: 50px 100px;
  transition: top 0.5s ease-out;
}

.menu-box.close {
  top: -100vh;
}
.right-links {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
}

.right-links img {
  width: 50px;
  margin-left: 20px;
  cursor: pointer;
}

.right-links a {
  text-decoration: none;
  color: #fff;
  background: #f92537;
  padding: 15px 40px;
}

.menu-links a {
  text-decoration: none;
  color: #fff;
  display: block;
  width: fit-content;
  margin: 30px 0;
  font-size: 25px;
  transition: transform 0.3s ease-out;
}

.menu-links a::after {
  content: "";
  width: 40px;
  height: 5px;
  background: #f92537;
  margin-left: 10px;
  margin-bottom: 5px;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.menu-links a:hover {
  transform: scale(1.2);
}

.menu-links a:hover::after {
  opacity: 1;
}
