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

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

body {
  background-image: url(/assets/images/bg.jpg);
  background-size: cover;
  background-color: rgb(77 64 12);
  background-blend-mode: overlay;

}

section {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

.time-content {
  display: inline-flex;
  column-gap: 30px;
  align-items: center;
  border: 1px solid white;
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  background: rgba(250, 250, 250, 0.2);
  min-width: 520px;
  justify-content: space-between;
}

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

.time .number {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #eee;
}

.time .text {
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

.logo img {
  border-radius: 0.5rem;
}

@media screen and (max-width: 768px) {
  .logo img {
    width: 200px;
  }

  h1 {
    font-size: 3rem;
  }

  .time-content {
    column-gap: 20px;
    padding: 1rem;
    min-width: 100%;
  }

  .time .number {
    font-size: 4rem;
  }

}