body {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(0deg, #040404 0%, #2b3031);
  color: white;
}

#container {
  width: 600px;
  margin: 0 auto;
  height: 95%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

#choices {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
}

.choice:first-child {
  width: 50%;
  margin: 0 auto;
}

#background {
  width: 100%;
  height: 400px;
  border-radius: 5px;
  border: 1px solid white;
}

.choice {
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  width: 45%;
  padding: 8px;
}

#story {
  height: 75px;
  width: 100%;
}

#title {
  font-size: 20px;
  font-weight: bold;
}

#musicToggle {
  background-color: #444;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
}

#musicToggle:hover {
  background-color: #787878;
  cursor: pointer;
}

.icon-container {
  position: fixed;
  bottom: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  padding-inline-end: 3%;
}

.icon-container a {
  color: #000;
  font-size: 24px;
  text-decoration: none;
}

.fa-github {
  text-shadow: 0 0 10px #ece6e6, 0 0 20px #f6f5f5, 0 0 30px #000000, 0 0 40px #000000;
}

.fa-linkedin {
  text-shadow: 0 0 10px #0077b5, 0 0 20px #0077b5, 0 0 30px #0077b5, 0 0 40px #0077b5;
}

@media (max-width: 650px) {
  #container {
    width: 80%;
  }

  #story {
    height: 150px;
  }

  .choice {
    width: 50%;
    height: auto;
    font-size: 12px;
    padding: 4px;
    margin-bottom: 8px;
  }

  .icon-container {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 5px;
  }

  .icon-container a {
    font-size: 20px;

  }
}