@charset "UTF-8";
/* CSS Document */

.titulo {
    font-family: "Lucia";
    font-size: 65px;
    text-align: center;
    line-height: normal;
    color: dimgrey;
}
.titulo1 {
    font-family: "Lucia";
    font-size: 95px;
    text-align: center;
    line-height: 60%;
    color: dimgrey;
}
.titulo2 {
    font-family: "Lucia";
    font-size: 50px;
    text-align: center;
    line-height: normal;
    color: dimgrey;
}
.para {
    font-family: Baskerville !important;
    font-size: 17px;
    text-align: center;
    color: dimgrey;
}
.separa {
    padding-top: 150px;
    padding-bottom: 180px;
}
.meu-botao {
    background-color: #DDDDDD; /* Cor de fundo */
    color: #000000; /* Cor do texto */
    padding: 10px 20px; /* Espaçamento interno */
    border: 1px solid #B4B4B4; /* Remove borda padrão */
    border-radius: 25px; /* Cantos arredondados */
    cursor: pointer; /* Muda o cursor para mãozinha */
    font-size: 16px;
    transition: background-color 0.3s; /* Suaviza a cor no hover */
}

.meu-botao:hover {
    background-color: #FFFFFF; /* Cor ao passar o mouse */
}

body {
    background-image: url(../imagens/fundo.jpg);
    background-repeat: repeat;
    background-size: auto auto;
}

.countdown-box {
    font-family: Baskerville;
      padding: 30px;
      text-align: center;
      width: 100%;
      max-width: 600px;
      color: dimgrey;
    }

    .time {
      font-size: 2rem;
      font-weight: bold;
    }

    .label {
      font-size: 0.9rem;
      color: gray;
    }

    .heart {
      color: #ff4d6d;
      font-size: 2rem;
    }

    @media (max-width: 576px) {
      .time {
        font-size: 1.5rem;
      }
}