* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #95DBF5;
  background: linear-gradient(180deg, rgb(149, 219, 245) 0%, rgb(148, 251, 224) 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 1000;
  font-style: normal;
  padding: 10px;
  color: #4D5E81;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: #fff 1px solid;
  width: 100%;
  max-width: 500px;
  height: fit-content;
  border-radius: 24px;
  padding: 30px;
  gap: 40px;
  background: RGBA(255, 255, 255, 0.6);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 16px;
}

h1 {
  text-align: center;
}

h2 {
  font-weight: 200;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.menu-item {
  text-decoration: none;
  color: #000;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 3px solid #4D5E81;
}

a.menu-item {
  color: #4D5E81;
}

a.menu-item:hover {
  background-color: #4D5E81;
  color: #fff;
}

.titles {
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
