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-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: LeagueSpartanSemiRegular;
}

@font-face {
    font-family: LeagueSpartanSemiRegular;
    src: url(/asset/Fonts/LeagueSpartan-Regular.woff2);
    font-display: swap;
}

@font-face {
    font-family: LeagueSpartanSemiBold;
    src: url(/asset/Fonts/LeagueSpartan-SemiBold.woff2);
    font-display: swap;
}

@font-face {
    font-family: LeagueSpartanBold;
    src: url(/asset/Fonts/LeagueSpartan-ExtraBold.woff2);
    font-display: swap;
}

.font-regular {
    font-family: LeagueSpartanSemiRegular;
}

.font-semibold {
    font-family: LeagueSpartanSemiBold;
    color: white;
    text-shadow: 2px 5px 7px rgba(0, 0, 0, 0.5);
}

.font-bold {
    font-family: LeagueSpartanBold;
    color: white;
    text-shadow: 2px 5px 7px rgba(0, 0, 0, 0.5);
}