* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  width: 100%;
  background: url('bg.jpg') no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  background-color: rgba(240, 231, 231, 0.548);
  border-radius: 15px;
  padding: 1px 6px;
}

.button {
  background-color: #f0a500;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.section2 {
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
  color: #f0a500;
}

.section3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.timer div {
  font-size: 1.2rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: #f0a500;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
