:root {
  --accent: #00a8b4;
  --dark: #202020;
  --light: #fff;
  --bg-degree: 45deg;
  --bg-degree-back: var(--bg-degree);
}

.button-container {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
}

.btn-group {
  display: flex;
}

.btn-group button {
  background-color: rgb(242.25, 242.25, 242.25);
  color: #202020;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #202020;
  border-left: none;
  border-right: none;
  box-shadow: 0 0 5px 0 var(--dark);
}

.btn-group button:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-left: 1px solid #202020;
}

.btn-group button:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 1px solid #202020;
}

.btn-group button:hover {
  filter: brightness(90%);
}

button.active {
  background-color: var(--accent);
  color: rgb(242.25, 242.25, 242.25);
}

@media (max-width: 600px) {
  .button-container {
    position: static;
    margin: 30px 0 0 0;
    text-align: center;
  }
}

/*# sourceMappingURL=btn.css.map */
