@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&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 {
    --background-site: #070f35;
    --background-container: #0f3a6a;
    --timer-tag: #4070a3;
    --text: #6b9658;
}

* {
    padding: 0px;
    margin: 0px,
}

body {
    background-color: var(--background-site);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    padding: 10px;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header h2 {
    font-weight: 600;
    text-align: center;
}

.flower_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: var(--background-container);
    display: flex;
    align-items: end;
    justify-content: center;
    width: 15rem;
    height: 20rem;
    padding: 20px;
    padding-bottom: 0px;
    border-radius: 20px;
    overflow: hidden;
}


.land {
    position: absolute;
}

.flower_container .container .land {
        animation: balancarland 3s ease-in-out infinite;
    transform-origin: center;
}

.flower_container .container .flower {
    animation: balancarFlor 3s ease-in-out infinite;
    transform-origin: center;
  }
  
/* Animação de balanço da land */ 
@keyframes  balancarland {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* Animação de balanço da land */ 
@keyframes  balancarFlor {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.timer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer_container {
    background-color: var(--background-container);
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 1rem;
}

.timer_header h3 {
    font-size: 1.4rem;
}

.div_tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.tag {
    background-color: var(--timer-tag);
    margin: 1rem;
    padding: 1rem;
    border-radius: 15px;
    color: var(--textx);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.value_timer {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.tag_title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0px;
}