* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #171616;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-wrapper {
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Header */
.page-title {
  color: #b28b21;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.chooser {
  display: flex;
  gap: 40px;
}

.option {
  text-decoration: none;
}

.square {
  width: 240px;
  height: 240px;
  background: #212529;
  border: 2px solid #b28b21; /* gold */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.square img {
  max-width: 70%;
  max-height: 120px;
  margin-bottom: 12px;
}

.square span {
  color: #b28b21;
  font-size: 20px;
  letter-spacing: 1px;
}

.option:hover .square {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.808);
}


/* 1440p+ screens */
@media (min-width: 1440px) {
  .page-title {
    font-size: 52px;
    margin-bottom: 70px;
  }

  .square {
    width: 380px;
    height: 380px;
  }

  .square img {
    max-height: 190px;
  }

  .square span {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .chooser {
    flex-direction: column;
    gap: 40px;
  }

  .page-title {
    font-size: 30px;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    width: 100%;
    text-align: center;
  }

  .square {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 600px) {

  .chooser {
    width: 100%;
    align-items: center;
  }
}
