body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('../assets/images/cygnus-alpha-bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

.container {
  text-align: center;
  /* background-color: rgba(0, 0, 0, 0.7);  */
  padding: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.box-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box {
  background-color: orange;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.box:hover {
  background-color: #ff9800;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .box-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .box {
    width: 200px;
    margin: 10px;
  }
}
