#obra{
    position: relative;
    max-width: 100vw;
    background: radial-gradient(circle at 50% 30%, #FFE 30%, #BBA 80%);
    }
#obra-background{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url('/assets/img/textures/wall.webp');
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.2;
    z-index: 0;
    }
#obra-item{
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
#obra-description {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 16px;
    margin-bottom: 32px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    }
#obra-description > h1{
    font-family: var(--font-default);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 140%;
    }
#obra-img {
    position: relative;
    text-align: center;
    margin: 32px 0;
    }
#obra-img > a {
    }
#obra-img > a > img{
    margin: 0;
    padding: 0;
    max-width: 86vw;
    max-height: 70vh;
    outline: solid 12px #262020;
    outline-offset: 0px;
    border-top: solid 2px #000;
    border-left: solid 2px #000;
    border-bottom: solid 1px #555;
    border-right: solid 1px #444;
    box-shadow: 10px 25px 30px 10px rgba(0, 0, 0, 0.3),
              /* segundo contorno */
              5px 5px 15px 10px rgba(0, 0, 0, 0.3),
              /* terceiro contorno */
              0 10px 10px 10px rgba(0, 0, 0, 0.2);
    }