* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: 'pixel';
  src: url('./ft88.otf');
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 45px 120px 45px;
}

header {
  position: fixed;
  left: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding: 0 50px;
}

svg {
  padding: 20px;
  width: calc(100% / 6);
  height: calc(100% / 6);
}

button {
  cursor: pointer;
  width: 240px;
  border-radius: 100px;
  padding: 18px 20px 14px 20px;
  border: none;
  font-size: 14px;
  font-family: 'pixel';
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
}

/* responsive */
@media (max-width: 800px) {
  body {
    padding: 30px 25px 130px 25px;
  }

  svg {
    padding: 10px;
    width: calc(100% / 4);
    height: calc(100% / 9);
  }

  header {
    justify-content: space-around;
    padding: 0 30px;
    bottom: 40px;
  }

  button {
    width: 40%;
    padding: 14px 16px 10px 16px;
    font-size: 12px;
  }
}
