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

.container {
  background-image: url(images/background.png);
  background-position: top;
  min-height: 100vh;
  min-width: 208vh;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 0 8%;
}

.logo {
  width: 200px;
  padding: 20px 10px;
  cursor: pointer;
  border-radius: 60px;
}

.content {
  top: 20%;
  position: absolute;
  transform: translateY(-50%);
  color: #000000;
  font-size: 30px;
  padding-top: 35%;
}
.content h1 {
  font-size: 90px;
  font-weight: 600;
}

.content h1 span {
  color: #ff0101;
}

.content button {
  border: 3px solid #ffffff;
  background: none;
  padding: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
  font-size: 35px;
  border-radius: 10px;
  transition: 0.3s;
  margin: 10px;
  position: relative;
  overflow: hidden;
}

.content button:active {
  transform: scale(1.03);
}

.content button:hover {
  color: #000000;
}

.content button::before {
  content: "";
  position: absolute;
  left: 0%;
  width: 100%;
  height: 0%;
  background: #ffffff;
  z-index: -1;
  transition: 0.3s;
}

.content button::before {
  bottom: 0;
  border-radius: 50% 50% 0% 0%;
}

.content button:hover::before {
  height: 180%;
}

.content button img {
  width: 50px;
  margin-left: 10px;
}

.timer {
  display: flex;
}

.timer div {
  flex-basis: 100px;
}
.timer div p {
  font-size: 60px;
  margin-bottom: -14px;
}
