body {
    font-family: 'DynaPuff', cursive;
    background-color: #fff;
    color: #333;
    text-align: center;
    margin: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.section {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.countdown-section {
    background-color: #FAC39D;
    color: #fff;
}

.iban-section {
    color: #a6ada6;
}

.info-section {
    background-color: #9AB293;
    color: #fff;
}

.message-section {
    background-color: #888c88;

}

h1 {
    color: #ffffff;
	font-size: 40px;
}

h2 {
    color: #ffffff;
	line-height: 1;
}

.ironico {
    font-size: 20px;
}

#countdown {
    font-size: 34px;
    font-weight: bold;
}

.iban-title {
    font-size: 22px;
}

.iban {
    font-size: 20px;
}

@media (max-width: 768px) {
    .logo {
        width: 120px;
        height: 120px;
    }

    #countdown {
        font-size: 24px;
    }
}

a {
    text-decoration: underline;
    color: inherit; /* Mantiene il colore del testo circostante */
}

a:hover, a:focus {
    text-decoration: underline;
}