* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  color: white;
}

html, body {
  height: 100%;
  background-color: #222222;
}

body {
  display: flex;
  flex-direction: column;
}

.options {
  flex: 1;
}

.page-title {
  text-align: center;
  font-weight: bold;
  margin: 10px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 2rem;
}

.option-container {
  display: flex;
  padding: 20px 0;
  border-top: #545454 1px solid;
}

.option-label {
  margin-left: 10px;
  flex: 1;
}

.loop-input {
  margin-right: 20px;
}

.wave-input {
  color: black;
  margin-right: 20px;
}

input, select, option {
  cursor: pointer;
}

#volumeInput {
  flex: 1;
  margin: 10px;
  cursor: pointer;
}

.volume-label {
  margin: 10px;
  margin-right: 20px;
  font-weight: bold;
}

.save-button {
  background-color: green;
  padding: 10px;
  border-radius: 15px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.buttons-container {
  display: flex;
}

.media-button {
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  background-color: red;
  text-align: center;
  padding: 10px;
  margin: 10px;
  border-radius: 15px;
  cursor: pointer;
}