* {
  font-family: poppins;
}

body {
  background: #233544;
  margin: 0;
  overflow:hidden;
}

main {
  padding: 0px 15px;
  max-width: 1650px;
  margin: auto;
  z-index: 10;
}

h1 {
  font-size: 110px;
  font-weight: 450;
  color: rgb(242, 220, 220);
  z-index: 10;
  margin: 0;
}

h1 span {
  color: #76d6ca;
}

button {
  z-index: 10;
  cursor: pointer;
  background-color: transparent;
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 30px;

  border: 2px solid white;
  border-radius: 22px 10px;
  transition: ease-in 0.2s color, background 0.2s ease-in, border-radius 0.3s ease-out;
}

button:hover {
  transition: ease-in 0.15s;
  border-radius: 22px 22px;
  background: white;
  color: #589870;
}

.elipseCon {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
}

.elipseCon .elipse-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  filter: drop-shadow(#76d6ca 2px 2px 10px);
}

.elipseCon .elipse-2 {
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 5;
  filter: drop-shadow(#4aa38e 2px 2px 10px);
}

.elipseCon .elipse-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  filter: drop-shadow(#4494a5 2px 2px 10px);
}
.nav {
  box-shadow: #2b262753 2px 4px 2px;
  max-width: 650px;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 8;
  backdrop-filter: blur(10px);
  border: 2px solid #4a8da3;
  border-radius: 20px;
  padding: 5px 20px;
  margin-top: 25px;
}

.timer {
  color: #6ea594;
  box-shadow: #2b262753 2px 4px 2px;
  width: 380px;
  display: flex;

  align-items: flex-start;
  justify-content: space-between;
  z-index: 8;
  backdrop-filter: blur(10px);
  border: 2px solid #4a8da3;
  border-radius: 20px;
  padding: 20px 35px;
  margin-top: 25px;
}

.timer div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.timer p {
  color: #b2ead5;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.logoImg {
  width: 300px;
}

.posAbsoluteCon {
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.centerAlign {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

@media only screen and (max-width: 1600px) {
  .timer p,
  .timer {
    color: white;
  }
}
@media only screen and (max-width: 1200px) {
  .elipseCon img {
    width: 300px;
  }
}

@media only screen and (max-width: 800px) {
  h1 {
    font-size: 70px;
  }

  .elipseCon .elipse-2 {
    transform: rotate(-50deg);
    bottom: -60px;
  }

  .elipseCon .elipse-1 {
    display: none;
  }
}

@media only screen and (max-width: 530px) {
  h1 {
    font-size: 50px;
  }

  .elipseCon .elipse-2 {
    transform: rotate(-50deg);
    bottom: -60px;
  }

  .elipseCon .elipse-1 {
    display: none;
  }

  .logoImg {
    width: 180px;
  }

  .nav {
    padding: 10px;
  }

  .timer {
    padding: 10px 15px;
    width: 300px;
  }

  .timer p {
    font-size: 18px;
  }
}
