@import "https://fonts.cdnfonts.com/css/real-text";

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  color: #000;
  background-color: #f9f4b5;
}
::selection {
  color: #000;
  background-color: #f9f4b5;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  font-family: "Real Text", sans-serif;
  font-weight: 300;
  color: #333;
  background-color: #a3c9f1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}
a.btn {
  display: block;
}
a.btn-border-hover {
  position: relative;
  transition: background-color .2s ease-in-out;
}
a.btn-border-hover:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1.5em);
  height: calc(100% + 1.5em);
  border: max(.5px, .0463vh) solid transparent;
  border-radius: 4.5em;
  transition: border .2s ease-in-out;
}
a.btn-border-hover:hover:before {
  border-color: #333;
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  margin-inline: auto;
  padding: max(60px, 3.125vw) 6.25vw;
}

.teamspeakinfo {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding: max(60px, 3.125vw) 6.25vw;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.spacer {
  height: 3vh;
}

footer {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-block: max(30px, 4.16667vh);
}
footer .line {
  position: absolute;
  top: 0;
  inset-inline: 0;
  padding-inline: inherit;
  overflow: clip;
}
footer .line-wrapper {
  overflow: clip;
}
footer .line hr {
  border: 0;
  border-top: max(.5px, .0463vh) solid #333;
}
footer .logo {
  width: 20svmin;
}
@media (max-width: 767px) {
  footer .logo {
    width: 32svmin;
  }
}
footer .contact {
  display: flex;
  gap: 2em;
  font-size: 1.725svmin;
}
@media (max-width: 767px) {
  footer .contact {
    font-size: 2.725svmin;
  }
}
footer .contact a .icon {
    width: 1.525em;  
    height: auto;   
}
footer .contact .email .tx-an-5 {
  animation-name: tx-an-5-text;
}

footer .credits {
  font-size: 1.4svmin;
  color: #333;
  max-width: 50%;
  line-height: 1.4;
}
@media (max-width: 767px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1em;
  }

  footer .credits {
    max-width: 100%;
    font-size: 2.2svmin;
  }
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tx-an-5-title {
  0%   { opacity: 0; transform: translateY(0.25em); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes tx-an-5-text {
  0%   { opacity: 0; transform: translateY(1em); }
  100% { opacity: 1; transform: translateY(0); }
}
