@import url("https://fonts.googleapis.com/css2?family=Inter&family=Montserrat&family=Tilt+Neon&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.main-cont{
  width: 100vw;
  height: 100vh;
  background-color: #1E2C37;
}

.content-limit{
  height: 100%;
  width: 80%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.text-area{
  flex-shrink: 0;
}

.title{
  color: #1999EE;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 40px;
}

.describe{
  color: #B3BAD1;
  font-size: 24px;
  margin-bottom: 20px;
}

.time{
  color: #FFFFFF;
  font-size: 24px;
}

.mobile-system-img{
  display: none;
}

.button-area{
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.button{
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 23px;
  border: 1px solid transparent;
  margin-top: 50px;
  color: #FFFFFF;
  background: linear-gradient(#1999EE 0%, #0B3AA8 100%) padding-box,  linear-gradient(#85C5FF 0%, #0052FF00 100%) border-box;
}

.pc-system-img{
  width: 50%;
  max-width: 790px;
}

@media (max-width: 1280px) {
  .title{
    font-size: 36px;
    margin-bottom: 25px;
  }

  .describe{
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .time{
    font-size: 20px;
  }

  .button{
    margin-top: 35px;
  }
}

@media (max-width: 1024px) {
  .title{
    font-size: 28px;
    margin-bottom: 20px;
  }

  .describe{
    font-size: 15px;
    margin-bottom: 5px;
  }

  .time{
    font-size: 15px;
  }

  .button{
    margin-top: 50px;
    font-size: 12px;
  }

}

@media (max-width: 768px) {
  .text-area{
    width: 300px;
    flex-shrink: 0;
  }

  .title{
    font-size: 34px;
  }

  .time{
    font-size: 13px;
  }

  .pc-system-img{
    display: none;
  }

  .button{
    width: 100%;
  }

  .mobile-system-img{
    display: block;
    width: 100%;
    margin-top: 60px;
  }
}
