* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --Main-font: "Poppins", sans-serif;

  --primary-color: #011627;
}

a {
  text-decoration: none;
}

body {
  text-align: center;
  font-family: var(--Main-font);
  height: 100vh;
  background: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(95deg, rgb(218, 131, 217), rgb(125, 125, 245)); */
  /* background: rgba(15, 30, 45, 0.982); */
  background: var(--primary-color);
  width: 100%;
  max-width: 600px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  height: 100%;

  /* overflow: hidden; */
}

.album-artwork {
  width: 80%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

h1,
h2 {
  margin: 1px 0;
  font-size: 1.5rem;
}

.countdown {
  display: flex;
  margin: 15px 0;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background-color: #17265d80;
  backdrop-filter: blur(5px);
  padding: 20px;
  width: 80%;
  border-radius: 8px;
}

.container-text {
  width: 80%;
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.colon {
  font-size: 1.5rem;
}
.time-section {
  text-align: center;
  width: 100%;
}

.time {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.label {
  font-family: var(--Main-font);
  font-size: 0.8rem;
}

.CTA-button {
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
  background: rgb(0, 27, 96);
  color: #fff;
  width: 50%;
  border-radius: 20px;
  margin-top: 20px;
}

.CTA-button:hover {
  background-color: rgb(24, 60, 107);
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-block: 1.2rem;
}

.footer {
  padding-block: 1rem;
}

@media (max-width: 600px) {
  .countdown {
    flex-direction: column;
  }

  .time {
    font-size: 1.5em;
  }

  .label {
    font-size: 0.8em;
  }

  h1,
  h2 {
    font-size: 1.5em;
  }
}
