@font-face {
    font-family: 'Roboto'; /* Define the font-family name once */
    src: url("../fonts/Roboto.ttf");
}

* {
    font-family: 'Roboto', sans-serif; /* Use the defined font-family name */
}

body{
    background-image: url("../img/Garum-BG.jpg");
    background-position: center center;
    background-size: cover;
    letter-spacing: 2px;
}

.container{
    padding-top: 40px;
    padding-bottom: 40px;
}

.rombo-container{
    column-gap: 12px;
}

.rombo{
    background-color: #000;
    transform: rotate(45deg);
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.rombo a{
    transform: rotate(-45deg);
}
.rombo i{
    color: #d6cfc1;
    font-size: 12px;
}

.rombo img{
    width: 16px;
}

#prossimamente{
    font-weight: 600;
    font-size: 22px;
}
#ottobre{
    margin-top: -25px;
    display: block;
    font-weight: 900;
    font-size: 60px;
}
#candidati{
    font-weight: 600;
    font-size: 28px ;
}

.candidati-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centra orizzontalmente */
    column-gap: 20px; /* spazio tra i box */
    row-gap: 10px;
    max-width: 500px; /* larghezza massima del blocco */
    margin: auto;
}

.candidati {
    flex: 0 0 calc(50% - 10px); /* 2 per riga */
    font-weight: 600;
    text-align: center;
    border: 3px solid #000;
    padding: 3px 5px;
    color: #000;
    text-decoration: none;
    font-size: 22px;
}

.candidati:hover{
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 576px){
    .candidati{
        flex: 0 0 100%;
    }

    .container{
        padding-top: 60px;
        padding-bottom: 80px;
    }

    #prossimamente{
        font-size: 20px;
    }
    #ottobre{
        margin-top: -20px;
        font-size: 50px;
    }
    #candidati{
        font-size: 24px ;
    }

    .rombo{
        width: 26px;
        height: 26px;
    }
    .rombo i{
        font-size: 14px;
    }

    .rombo img{
        width: 18px;
    }
}