* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "EB Garamond", serif;
}

body {
    background-color: #007206;
    color: #fff;
}

.testo {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .testo {
        font-size: 1.7rem;
    }
}

.btn-vittoria {
    background-color: #fff;
    color: #007206;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-vittoria:hover {
    background-color: #045708;
    color: #fff;
}

.annuncio {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 40px;
    text-align: center;
    color: #007206;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.annuncio img {
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.annuncio p {
    font-weight: bold;
    margin-bottom: 0;
}