body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient( #ff5050, #000000);
  min-height: 100vh;
  text-align: center;
  margin: 0;
}

header {
  background-color: #000000;
  padding: .8em;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);
}

.menu {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.menu li {
  display: inline;
}

.menu a {
  text-decoration: none;
  color: white;
  padding: 0.7em 1.5em;
  background-color: #000000;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.3);
}

.menu a:hover {
  background-color: #ff5050;
  transform: translateY(-3px);
  box-shadow: 0px 6px 10px rgba(255, 100, 100, 0.5);
}

.main {
  background: rgb(0, 0, 0);
  border-radius: 15px;
  max-width: 400px;
  margin: 1.5em auto;
  box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 1);
}

p {
  font-size: 1.2em;
  color: #ffffff;
  line-height: 1.6;
}
