html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #7c258e;
    cursor: url('Cursor.png'), auto;
}

body {
    cursor: url('Cursor.jpg'), 0 0, auto;
}

.rum-raisin-regular {
  font-family: "Rum Raisin", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.clickable, a, button, .menu button{
    cursor: url('Cursor2.png') 0 0, pointer;
}


.top-bar {
  width: 100%;
  height: 32px;
  background: linear-gradient(to bottom, #5a1f66, #7c258e);
  z-index: 1;
}

.top-bar2 {
  width: 100%;
  height: 32px;
  margin-top: 4px;
  background: linear-gradient(to bottom, #7c258e, #5a1f66);
  z-index: 2;
}

.menu {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 45px;
  z-index: 3;
}

.menu button {
  width: 195px;
  height: 45px;
  background-color: #4f0062;
  border: none;
  font-family: "Rum Raisin", sans-serif;
  color: white;
  font-size: 25px;
  border-radius: 64px;
  transition: background-color 0.3s ease;
}

.menu button a {
 color: inherit;
 text-decoration: none;
}

.menu button:hover {
  background-color: #a10dc5;
  color: #f6cfff;
}

.soon {
  font-family: "Rum Raisin", sans-serif;
  color: white;
  font-size: 101px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


