@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

*{
    box-sizing: border-box;
}

body {
    /*background-image: url('Background.jpg');*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
    background-color: dodgerblue;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    overflow: hidden;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 150px; /* Ajuste a distância da imagem para o conteúdo abaixo */
  max-width: 300px; /* Define a largura da imagem para 300 pixels */
  height: auto;   /* Mantém a proporção da imagem automaticamente */
  
}

.center-image {
  display: block;
  margin-top: auto;
  margin: 0 auto;
  max-width: 50%; /* Define que a imagem ocupará 50% da largura disponível */
  height: auto;   /* Mantém a proporção da imagem automaticamente */
}




h1{
    font-weight: normal;
    font-size: 60px;
    margin: -150px 0 40px;
    color: rgb(251, 251, 251);
}

.countdown{
    display: flex;
    transform: scale(2);
}

.time{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px;
    color:  rgb(251, 251, 251);
}

.time h2{
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    margin: 0 0 5px;
    color: rgb(251, 251, 251);
}

@media (max-width: 500px)
{
    h1{
      font-size: 45px;
    }

    .time{
      margin:5px;
    }

    .time h2{
      font-size: 12px;
    }

    .time small {
      font-size: 10px;
    }
}