* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  cursor: url("https://chee64.neocities.org/index_imgs/bene1.png"), auto;
  background: url('https://chee64.neocities.org/index_imgs/bg1.gif');
  display: flex;
  justify-content: center;
  align-items: center;    
  min-height: 100vh;     
  font-family: "Courier New", Courier, monospace;
  text-align: center;
}

a:hover,
button:hover,
input:hover,
select:hover,
textarea:hover,
label:hover,
img:hover,
video:hover,
[onclick]:hover,
[role="button"]:hover {
  cursor: url("https://chee64.neocities.org/index_imgs/bene2.png") 0 0, pointer;
}

body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: url("https://chee64.neocities.org/index_imgs/bene2.png");
}


.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border: 8px ridge #4F4F4F;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  gap: 20px;
}


.title {
  width: 100%;
  display: flex;
  justify-content: center;
}

.title img {
  max-width: 80%;
  height: auto;
}

/* Divider */
.divider img {
  width: 100%;
  height: auto;
}

.text {
  color: #F0B200;
}

/* Buttons */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center; /* THIS is the important part */
  gap: 10px;
  width: 100%;
}

.buttons button {
  width: 35%;
  padding: 12px;
  background: #F0B200;
  border: none;
  border-radius: 6px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
   font-family: "Courier New", Courier, monospace;
  text-align: center;
  color: #2e1a00;
  font-weight: 600;
}

.buttons button:hover {
  background: #cf7500;
}

.buttons button:active {
  transform: scale(0.97);
}

.buttons button:focus-visible {
  outline: 2px solid #F0B200;
  outline-offset: 2px;
}

/* Responsive tweaks */
@media (max-width: 500px) {
  .wrapper {
    padding: 20px;
  }

  .buttons button {
    width: 60%; /* increase width on small screens */
    padding: 10px;
    font-size: 0.9rem;
  }
}
