body {
    background-color: lightblue;
}

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;
}

.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%;
}

a {
    text-decoration: none;
}

.banner-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.banner-button {
    display: flex;
    text-decoration: none;
    background-color: white;
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 80%;
    max-width: 600px;
    justify-content: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.banner-button:hover {
    background-color: #e8e8e8;
    scale: 105%;
}

.banner-content {
    display: flex;
    align-items: center;
}

.icon {
    font-size: 24px;
    margin-right: 20px;
    scale: 150%;
}

.banner-text {
    margin: 0;
    font-family: KomitaTitle;
}

@font-face {
    font-family: KomitaTitle;
    src: url(/asset/Fonts/BebasNeue-Regular.ttf);
    font-display: swap;
}

.font-title {
    font-family: KomitaTitle;
}