* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Bangers', cursive;
}
body {
  background-color: black;
}

h1 {
  text-align: center;
  color: white;
  padding-top: 30px;
  font-size: 5vw;
}

.options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.options button {
  text-align: center;
  font-size: 3vw;
  flex-basis: 100%;
  flex-grow: 1;
  margin: 20px;
  padding: 1.5vw;
  background-color: transparent;
  color: white;
  border: 3px solid white;
  border-radius: 20px;
  transition: all 0.2s;
  outline: none;
}

.option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 3vw;
  text-align: center;
}

.option:hover {
  transform: translateY(-10px);
}

.option button {
  width: 5em;
}

.option > img {
  width: 10vw;
  margin: auto auto 0 auto;
}

.options button:hover {
  border-color: green;
  color: green;
}

p {
  text-align: center;
  font-size: 2.5vw;
}

.picks {
  display: flex;
  justify-content: space-evenly;
  color: white;
}

.picks > div {
  width: 15rem;
}

::selection {
  background-color: black;
  color: white;
}
