@font-face {
  font-family: 'calibri-regular';
  src: url('../fonts/calibri-regular.eot');
  src:
    local('☺'),
    url('../fonts/calibri-regular.woff') format('woff'),
    url('../fonts/calibri-regular.ttf') format('truetype'),
    url('../fonts/calibri-regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura-Bold';
  src: url('../fonts/Futura-Bold.eot');
  src:
    local('☺'),
    url('../fonts/Futura-Bold.woff') format('woff'),
    url('../fonts/Futura-Bold.ttf') format('truetype'),
    url('../fonts/Futura-Bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AVENGEANCE';
  src: url('../fonts/AVENGEANCE MIGHTIEST AVENGER.eot');
  src:
    local('☺'),
    url('../fonts/AVENGEANCE MIGHTIEST AVENGER.woff') format('woff'),
    url('../fonts/AVENGEANCE MIGHTIEST AVENGER.ttf') format('truetype'),
    url('../fonts/AVENGEANCE MIGHTIEST AVENGER.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*ROOT FOR BORDER ANIMATION*/

:root {
  --border-offset-x: 0px;
  --border-offset-y: 0px;
}
* {
  box-sizing: border-box;
}
body {
  background: url('../img/bg.png') #202636 repeat top left;
  background-size: 600px auto;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: 'calibri-regular';
  overscroll-behavior: none;
  animation: bg-texture 30s linear infinite;
  -webkit-animation: bg-texture 30s linear infinite;
  -o-animation: bg-texture 30s linear infinite;
  -ms-animation: bg-texture 30s linear infinite;
}
p {
  margin: 0;
  padding: 5px 0;
}
input {
  border-radius: 10px;
  padding: 10px;
  background: #777777;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: 'AVENGEANCE';
}
.header {
  text-align: center;
  width: 100%;
  height: 80px;
  margin-bottom: 40px;
}
.logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: auto;
  height: 80%;
}
.button {
  padding: 10px 15px;
  border-radius: 10px;
  position: relative;
}
.button:hover, .button:active {
  cursor: pointer;
}
.button span {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 10pt;
}
.button-polygon {
  background: linear-gradient(45deg,  rgba(123,63,228,1) 0%,rgba(175,137,238,1) 100%);
}
.button-polygon:hover, .button-polygon:active {
  background: linear-gradient(45deg,  rgba(175,137,238,1) 0%,rgba(123,63,228,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.button-polygon img {
  width: 80%;
  height: auto;
  float: right;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.border-animated {
  background: url('../img/bg.jpg') #202636 repeat top left;
  background-size: 626px auto;
  padding: 3px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  animation: border-animation 30s linear infinite;
  -webkit-animation: border-animation 30s linear infinite;
  -o-animation: border-animation 30s linear infinite;
  -ms-animation: border-animation 30s linear infinite;
}
.shiny {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  background-image: url(../img/bg.jpg);
  background-position: calc(50% + var(--border-offset-x))
    calc(50% + var(--border-offset-y));
  background-size: 1000%;
  z-index: -1;
  margin: -5px;
  animation: border-animation 30s linear infinite;
  -webkit-animation: border-animation 30s linear infinite;
  -o-animation: border-animation 30s linear infinite;
  -ms-animation: border-animation 30s linear infinite;
  filter: blur(5px);
}
.glow {
  margin: -5px;
}

/*SLIDER*/

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/*ANIMATIONS*/

@keyframes border-animation {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -626px -417px;
  }
}
@keyframes bg-texture {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -600px -693px;
  }
}

/*RESPONSIVE*/

@media screen and (max-width: 600px) {
  .header {
    height: auto;
    margin-bottom: 20px;
  }
  .logo {
    display: block;
  }
  .logo img {
    width: 60%;
    height: auto;
  }
  .button {
    max-width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0 auto;
  }
  .button span {
    display: inline;
    font-size: 12pt;
  }
  .button-polygon img {
    width: 50%;
    height: auto;
    float: none;
  }
}
