


@font-face {
  font-family: "Orbitron";
  src: url("../fonts/FiraCode-Medium.ttf");
}


body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: white;
}

.nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.fir {
  position: relative;
  width: 100vw;
  height: 100vh;
}



.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}
.center p{
  font-family: 'Orbitron', monospace;
}

.center .txt-sample p{
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.center .txt-comming p{
  text-transform: uppercase;
  font-size: 50px;
  margin: 0;
  padding: 0;
}

.side-txt {
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translate(-35%);
}

.side-txt p {
  color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  font-family: 'Orbitron', monospace;
}


.top-clock {
  position: absolute;
  text-align: center;
  top: 50%;
  right: 0;
  transform: translate(0);
  color: rgba(255, 255, 255, 0.2);
}

.clock {
  color: rgba(255, 255, 255, 0.2);
  transform: rotate(-90deg);
  font-family: 'Orbitron', monospace;
}



.sec {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.title-text {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

.title-text .title {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  font-family: 'Orbitron', monospace;
  text-align: center;
}
.title-text .subtitle {
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Orbitron', monospace;
  max-width: 500px;
  text-align: center;
}



.third {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.box {
  border: 0px solid rgba(255, 255, 255, 0.2);
  max-width: 300px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  margin: 10px;
  min-height: 260px;
}

.box p{
  margin: 0;
}
.box img{
  width: 100%;;
}

.tit {
  color: rgba(255, 255, 255, 1);
  font-family: 'Orbitron', monospace;
  text-align: center;
}
.txt {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-family: 'Orbitron', monospace;
}

.area {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}


@media only screen and (max-width: 700px) {
  .fir {
    display: block;
  }
  .sec {
    display: none;
  }
  .third {
    display: none;
  }
}