body {
    /* background-color: #151515; */
    margin: 0;
    padding: 0;
    font-size: 20px;
}

body::-webkit-scrollbar {
    display: none;
}


body a {
    text-decoration: none;
    color: #1d1e18;
}

body li {
    list-style: none;

}

h2,
h3 {
    text-align: center;

}

.pL0 {
    padding-left: 0px;
}


/* Generale */

.text-align {
    text-align: center;
}

.m-w {
    max-width: 80vw;
    margin: auto;
    padding-top: 5vh;
}

.m-w-40 {
    max-width: 40vw;
    margin: auto;
}

/* Header */

.logo-mobil {
    display: none;
}

.header {
    background: url(../images/bg-main.webp);
    background-size: cover;
    color: #fff;
    height: 95vh;
    animation: zoomOut 1s ease-in-out forwards;
    padding-top: 5vh;
    margin-top: 5vh;

}

.down {
    height: 110px;
    position: absolute;
    right: 5vh;

}

.a-down {
    text-align: end;
    position: absolute;
    bottom: 10vh;
    right: 5vw;
}


.title {
    padding-top: 50vh;
    height: 20vh;
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    max-width: 60%;

}


.title h1 {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 2s ease, transform 1s ease;
    margin-left: 14vw;
    font-size: 46px;
    color: #E6AA68;
    margin-left: 20vw;
    width: 100%;
    margin-top: 60px;

}

.title h2 {
    text-align: center;
    font-size: 36px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 2s ease, transform 5s ease;
    color: #FFFBBD;
    margin-left: 20vw;
    width: 100%;
}

/* Background */

.background {
    background-image: url(../images/bg-main.webp);
    background-size: cover;
    height: 300px;
    margin-bottom: 0px;
    background-attachment: fixed;

}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.loading-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hide the loading container after the page is loaded */
.hidden-load {
    display: none;
}

.notification {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid transparent;
    border-radius: 5px;
}
.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: absolute;
    top: 20vh;
    right: 40vw;
    z-index: 100;
}
.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: absolute;
    top: 20vh;
    right: 40vw;
    z-index: 100;
}