@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

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

:root {
  --black: #262d37;
  --blue: #1e40c8;
  --text: #6e7d8c;
}

h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.container {
  width: 1232px;
  display: flex;
  justify-content: space-between;
}

.column {
  align-items: center;
  flex-direction: column;
}

body {
  background-color: #e9f0fa;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("images/bg.svg");
}

/*============================================== header ==============================================*/
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .menu,
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul {
  display: flex;
  list-style: none;
  color: var(--text);
}

header nav ul li {
  font-size: 18px;
  margin-right: 30px;
}

header nav ul li:last-child {
  margin-right: 0px;
}

header nav ul li:hover {
  cursor: pointer;
  color: var(--blue);
}

.header-options {
  display: flex;
}

.header-options--login {
  margin-right: 30px;
}

.header-options--login,
.header-options--signUp {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 60px;
  color: #fff;
  border-radius: 6px;
}

.header-options--login {
  width: 130px;
  color: var(--blue);
  background-color: #f4f4fc;
}

.header-options--signUp {
  width: 150px;
  background-color: var(--blue);
}

.header-options--login:hover,
.header-options--signUp:hover {
  cursor: pointer;
  transition: 0.3s;
  transform: scale(1.1);
}
/*============================================== main ==============================================*/
main {
  display: flex;
  padding-top: 40px;
  justify-content: center;
}

.coutdown {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.days,
.hours,
.minutes,
.seconds {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.seconds {
  margin-right: 0px;
}

.coutdown p {
  color: #fff;
  padding: 27px;
  font-size: 40px;
  font-weight: 700;
  border-radius: 6px;
  background-color: var(--blue);
}

.coutdown span {
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
}
/*============================================== responsive ==============================================*/
@media (max-height: 768px) {
  main h1 {
    font-size: 40px;
    margin-bottom: 0px;
  }
  .main-illustration img {
    height: 290px;
  }
}

@media (max-width: 1232px) {
  .container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 890px) {
  header {
    height: auto;
  }

  .logo {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .menu {
    margin-bottom: 10px;
  }

  header .container {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  main h1 {
    font-size: 35px;
  }
}

@media (max-width: 542px) {
  main h1 {
    text-align: center;
  }

  header nav ul li {
    margin-right: 15px;
  }

  .coutdown {
    flex-direction: column;
  }

  .days,
  .hours,
  .minutes,
  .seconds {
    margin: 0;
    margin-bottom: 10px;
  }

  .coutdown span {
    font-size: 20px;
  }
}

@media (max-width: 382px) {
  header nav ul {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  header nav ul li {
    font-size: 16px;
  }

  .header-options--login {
    margin-right: 15px;
  }

  .main-illustration img {
    height: 240px;
  }
}