body {
    background-color:  #1d1a19;
    font-family: Arial;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

h1 {
    font-size: 64px;
}

a {
    color: #1E90FF;
    text-decoration: none;
}

.menu-bar {
    background-color: #111010;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin: 0;
    padding: 5px;
    display: inline-block;
}

.menu-link {
    display: inline-block;
}

.menu-link a {
    color: white;
    text-decoration: none;
    padding: 20px;
    display: inline-block;
}


    button {
      background-color: transparent;
      border: 2px solid #ff00ff;
      color: #ff00ff;
      padding: 12px 24px;
      font-size: 18px;
      border-radius: 8px;
      box-shadow: 0 0 10px #ff00ff;
      cursor: pointer;
      transition: 0.3s ease;
    }

    button:hover {
      background-color: #ff00ff;
      color: black;
      box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
      transform: scale(1.05);
    }