body {
    background-image: url('asset/sfondo.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

header {
    padding-top: 10px;
}

.menu-button {
    background-color: transparent;
    border: none;
    padding: 0px 0px;
    cursor: pointer;
}

.popup {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.icon {
    width: 34px;
    margin-right: 10px;
    border-radius: 50%;
}

.icony {
    width: 43px;
    margin-right: 10px;
}

.sfondo-pup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-popup {
    background-color: darkblue;
    color: white;
    border-color: none;
    display: inline-flex;
    border: 1px black;
    border-radius: 5px;
}

.menu-popup:hover {
    background-color: blue;
}

.container-image {
    text-align: center;

}

.logo {
    border-radius: 50%;
    border: 4px solid white;
}

a {
    text-decoration: none;
}

.banner-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.banner-content {
    display: flex;
    align-items: center;
}

.banner-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background-color: white;
    color: black;
    padding: 5px 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.banner-text {
    margin: 0;
    font-family: KomitaTitle;
    font-size: 30px;
    flex-grow: 1;
    text-align: center;
}

.spacer {
    width: 40px; 
}

.banner-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.02);
}

@font-face {
    font-family: KomitaTitle;
    src: url(/asset/Fonts/BebasNeue-Regular.ttf);
    font-display: swap;
}


/* Banner crediti */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;

    justify-content: center; 
    align-items: center;
}

.modal-box {
    background-color: white;
    padding: 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 300px;
    width: 90%;
    font-family: 'Times New Roman', serif;
    margin: auto;
}

.modal-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: black;
}

.modal-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-blue {
    background-color: #00008b;
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-family: sans-serif;
}

.btn-blue:hover {
    background-color: #0000cd;
}