@font-face {
  font-family: 'Zomzi';
  src: url('./fonts/Zomzi.TTF') format('truetype');
}

body {
  margin: 0;
  font-family: 'Zomzi', sans-serif;
  overflow: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: url('./images/bg.gif') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 0, 80, 0.6);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff0ff;
  text-shadow: 0 0 10px #e0aaff;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

button {
  font-family: 'Zomzi', sans-serif;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.4em;
  padding: 0.6em 1.4em;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background-color: #b700ff;
  border-color: #b700ff;
  color: #fff;
  transform: scale(1.05);
}