:root {
  --bg-color: #334A50;
  --color: #FFFFFF;
}
/*@font-face {
  font-display: swap;
  font-family: 'SegoeUIRegular';
  src: url(../fonts/SegoeUIRegular.eot);
  src: url(../fonts/SegoeUIRegular.woff) format("woff"),url(..//fonts/SegoeUIRegular.ttf) format("truetype");
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'SegoeUIBold';
  src: url(../fonts/SegoeUIBold.eot);
  src: url(../fonts/SegoeUIBold.woff) format("woff"),url(../fonts/SegoeUIBold.ttf) format("truetype");
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'SegoeUILight';
  src: url(../fonts/SegoeUILight.eot);
  src: url(../fonts/SegoeUILight.woff) format("woff"),url(../fonts/SegoeUILight.ttf) format("truetype");
  font-style: normal
}*/
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--color);
  font-family: 'SegoeUILight', Arial, 'PT Sans Caption';
  font-size: 16px;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-attachment: initial;
  background-color: transparent;
  background-image: url(../img/background.png);
  background-size: 70px;
  background-repeat: repeat;
  z-index: -5;
}
a {
  color: var(--color);
  text-decoration: none;
}
header,
footer {
  width: 700px;
  margin: 5px auto 0;
  display: flex;
  justify-content: space-between;
}
footer .donation {
  text-align: center;
  width: 100%;
  margin: 15px;
  text-decoration: underline;
}
header {
  border-bottom: 1px solid #6262628f;
  padding-bottom: 10px;
}
footer {
  border-top: 1px solid #6262628f;
}
header .logo-title,
header .link {
  display: flex;
  gap: 10px;
}
header .logo-title img {
  width: 65px;
  border-radius: 5px;
  box-shadow: 1px 1px 6px 0 rgba(111, 125, 157, 0.8);
}
header .logo-title:hover img {
  animation: brain-swing 0.8s ease-in-out infinite;
}
header .title {
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 65px;
  position: relative;
}
header .title span {
  font-size: 14px;
  position: absolute;
  top: -22px;
  right: -9px;
}
header .link .settings {
  font-size: 30px;
  line-height: 65px;
  cursor: pointer;
  transition: all 0.4s ease;
}
header .link .settings:hover {
  transform: rotate(15deg) scale(1.1);
}
.project {
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 65px;
}
.container {
  width: 700px;
  margin: 10px auto;
  background-color: #3d3c3c;
  border-radius: 7px;
  padding: 15px 20px;
  box-shadow: 2px 2px 10px 0 rgba(111, 125, 157, 0.5);
}
.info {
  font-size: 18px;
  text-align: center;
}
.form .line {
  width: 100%;
  display: flex;
  gap: 25px;
  position: relative;
}
.form .line * {
  width: 50%;
  margin: 10px 0;
}
.form .line label {
  text-align: right;
  font-size: 22px;
  line-height: 38px;
  font-weight: bold;
}
.form .line .error {
  position: absolute;
  right: 181px;
  bottom: -17px;
  border: 1px solid #707070;
  background-color: #9f9f9f;
  padding: 2px 7px;
  font-size: 14px;
  color: #af3843;
  font-weight: bold;
  width: auto;
  border-radius: 6px;
  line-height: 20px;
  display: none;
}
.form input[type=text] {
  color: rgba(255, 255, 255, 0.75);
  background-color: transparent;
  border: 1px solid #818181;
  border-radius: 4px;
  font-size: 16px;
  padding: 10px 15px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form input[type=text]:focus {
  color: rgba(255, 255, 255, 0.75);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}
.form input[type=submit] {
  width: 100%;
  font-size: 18px;
  padding: 10px;
  border-radius: 4px;
  background-color: #525252;
  border: 1px solid #595959;
  color: #FFFFFF;
  cursor: pointer;
}
.form input[type=submit]:hover {
  background-color: #767676;
}
.form input[type=submit]:disabled {
  background-color: #444444;
  color: #646464;
  cursor: default;
}
#player {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#player iframe {
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */