@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  background: #111111;
  color: whitesmoke;
  margin: 0;
  padding: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)), url(/static/img/pink_tunnel_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#header {
  display: flex;
  align-items: center;
  padding-left: 6rem;
  padding-top: 3rem;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  #header {
    padding-left: 2rem;
    padding-top: 2rem;
  }
}
@media screen and (max-width: 800px) {
  #header {
    padding-left: 1rem;
    padding-top: 1rem;
  }
}
#header #logo {
  height: 6rem;
}
@media screen and (max-width: 800px) {
  #header #logo {
    height: 4rem;
  }
}
#header #titles {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
#header #titles #title {
  font-size: 2.5rem;
}
@media screen and (max-width: 800px) {
  #header #titles #title {
    font-size: 1.5rem;
  }
}

#content {
  padding-bottom: 10rem;
}

#navmenu {
  display: flex;
  gap: 1rem;
  align-content: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap-reverse;
  padding: 1rem 2rem;
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 100vw;
}
#navmenu a {
  color: rgba(255, 255, 255, 0.839);
  font-weight: bold;
}
#navmenu a:hover {
  color: #F83A83;
}

#footer {
  background: #111111;
  padding-left: calc(6rem + 12px);
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  #footer {
    padding-left: calc(2rem + 12px);
    padding-right: calc(2rem + 12px);
  }
}
@media screen and (max-width: 800px) {
  #footer {
    padding-left: calc(1rem + 12px);
    padding-right: 1rem;
  }
}
#footer a {
  color: #F83A83;
}
#footer a:visited {
  color: #F83A83;
}

a {
  color: whitesmoke;
  text-decoration: none;
  transition: color 0.2s;
}
a:visited {
  color: whitesmoke;
}
a:hover {
  color: #F83A83;
}

.ritmix-button-colored {
  background: #151515;
  outline: none;
  border: 2px solid #F83A83;
  color: #F83A83;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 2rem;
  justify-content: center;
  transition: background 0.1s;
}
.ritmix-button-colored:hover {
  background: rgba(248, 58, 131, 0.2666666667);
}
.ritmix-button-colored:disabled {
  border: 2px solid #303030;
  color: #303030;
}

.border-image {
  border: 2px solid rgba(245, 245, 245, 0.608);
  border-radius: 0.5rem;
}