html {
  height: 100%;
}

body {
  background-color: black;
  color: white;
  font-family: 'Montserrat', sans-serif;
  margin: 0 15px;
  height: 100%;
  width: auto;
}

/* Small Devices, Tablets */
@media (min-width : 768px) {
  body {
    margin: 0 auto;
    width: 750px;
  }
}

/* Medium Devices, Desktops */
@media (min-width : 992px) {
  body {
    width: 970px;
  }
}

/* Large Devices, Wide Screens */
@media (min-width : 1200px) {
  body {
    width: 1170px;
  }
}

.btn {
  background-color: #5cabdc;
  border-color: #5cabdc;
  border-radius: 4px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 10px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #1db954;
  border-color: #1db954;
}

.btn-danger {
  background-color: #da5673;
  border-color: #da5673;
}

.text-shadow {
  text-shadow: 1px 2px rgba(0, 4, 4, 0.4);
}

.options {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: bold;
  justify-content: center;
  text-transform: uppercase;
}

.options-title {
  margin: 0;
  padding-right: 15px;
}
