html{
  height: 100%;
}

body {
  color: #fff;
  font-family: sans-serif;
  margin: 0;
  overflow: hidden;
  padding: 0;
  height: 100%;
}
@font-face {
  font-family: 'Barlow';
  src: url("./fonts/Barlow-Regular.woff2") format('woff2');
  src: url("./fonts/Barlow-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Orbitron';
  src: url("./fonts/Orbitron-Bold.woff2") format('woff2');
  src: url("./fonts/Orbitron-Bold.ttf") format('truetype');
  font-weight: 700;
  font-style: bold;
}
a {
  color: #fff;
  text-decoration: none;
  border-bottom: white 1px dashed;
  cursor: pointer;
}
a:hover{
  opacity: 0.5;
}
.wrapper{
  height: calc(100% - 12.2vw);
  padding: 6.1vw 8.5vw;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  box-sizing: content-box;
}
header{
  z-index: 9990;
}
.logo{
  width: 6.53vw;
}
h1{
  font-family: Orbitron;
  font-size: 5.000001vw;
  line-height: 6.25vw;
  z-index: 9991;
}
footer{
  flex: max-content;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  font-family: barlow;
  font-weight: 400;
  z-index: 9991;
}
.contacts{
  padding-top: 1.75vw;
  border-top: 0.1vw white solid;
  font-size: 1.0938vw;
  line-height: 1.328vw;
}
.copyright{
  color: #6197B4;
  font-size: 0.94vw;
  line-height: 1.1vw;
  position: fixed;
  bottom: 8px;
  right: 8px;
}
.filter{
  z-index: 2;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .wrapper{
    height: calc(100% - 20vw);
    padding: 10vw 12vw;
  }
  .logo{
    width: 6vw;
  }
  h1{
    font-size: 5.6vw;
    line-height: 6vw;
  }
  .contacts{
    padding-top: 2.8vw;
    font-size: 1.5vw;
    line-height: 2.267vw;
  }
  .copyright{
    margin-top: 2.5vw;
    font-size: 1vw;
    line-height: 1vw;
  }
  .filter{
    display: block;
  }
}
@media (max-width: 480px) {
  .wrapper{
    height: calc(100% - 20vw);
    padding: 10vw 12vw;
  }
  .logo{
    width: 16vw;
  }
  h1{
    font-size: 9.6vw;
    line-height: 12vw;
  }
  .contacts{
    padding-top: 4.8vw;
    font-size: 3.2vw;
    line-height: 4.267vw;
  }
  .copyright{
    margin-top: 8.8vw;
    font-size: 2.6668vw;
    line-height: 3.2vw;
  }
} 
