* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
}

#bg-content {
    width: 100%;
    height: 100%;
    background-image: url(bg-desktop.jpg);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #728870;
    position: absolute;
}

#content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
    width: 100%;
    justify-content: center;

}



#menu-content {
    background-color: rgba(255,255,255,1);
    border-radius: 10px;
    padding:40px 20px 60px 20px;
    width: 400px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.16);
}


#menu-content>a {
    display: block;
    background-color: #1C3B19;
    color: #ffffff;
    text-align: center;
    padding: 5px 10px;
    width: 100%;
    margin: 10px 0;
    border-radius: 50%;
}
#logo {
    width: 200px;
    height: 80px;
    display: flex;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    background-image: url(logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}


section {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    text-align: center;
    width: 80%;
    max-width: 400px;
    border-radius: 13px;
}

section a {
    border-radius: 20px;
    white-space: nowrap;
    width: 100%;
    max-width: 400px;
    height: 40px;
    color: #ffffff;
    background: #1C3B19;
    margin-top: 15px;
    text-decoration: none;
    line-height: 30px;
    display: flex;
    text-align: left;
    justify-content: left;
    align-items: center;
    gap: 4px;
    padding: 5px 20px;
}

section a img{
    background-color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 10px;
    padding: 4px;
    margin-right: 7px;
}
section a:first-child {
    margin-top: 0px;
}

section a b {
    font-weight: 600;
}

section a.proximamente,
section a.proximamente:hover {
    background: #ababab;
    color: #E0E0E0;
    cursor: not-allowed;
    height: auto;
    line-height: 1;
    padding: 7px;
}

section a.active,
section a:hover {
    filter: brightness(0.7);
}

@media (max-width:768px) {
   
    #bg-content {
        background-image: url(bg-mobile.jpg);
    }
    #content{
        padding: 30px !important;
    }
    #castiello{
        width: 100%;
    }
    #menu-content {
        padding: 20px 20px 50px 20px;
        width: 100%;
    }

    section a {
        width: 100%;
    }
}

article {
    text-align: left;
    line-height: 1.6;
    width: 90%;
}