.magazine{
    border-left: solid #ffaa00 10px;
    margin-top: 3rem;
    max-width: 100%;
    width: 90%;
    border-bottom: none;
    padding-left: 1rem;
}
.magazine h1{
    border-bottom: none;
}
.magazine a{
    text-decoration: none;
    color: black;
}
.magazineDate {
    padding: 1rem;
}


/* ABA DA REVISTA */
#otherPage{
    /* border: solid red 1px; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.revista{
    width: 100%;
    height: 80vh;
    margin-bottom: 3rem;
}
#customPDF{
    margin: 1rem;
    width: 100%;
    text-align: center;
    font-size: 16px;
    height: auto;
}
.revistaMobile{
    display: none;
}
@media (max-width: 600px){
    .revista{
        display: none;
    }
    .revistaMobile{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* border: solid red 1px; */
    }
    .revistaMobile img{
        width: 100%;
    }
    .revistaMobile a{
        margin-top: 2rem;
        padding: 1rem;
        background-color: #281767;
        border-radius: 20px;
        text-align: center;
        width: 50%;
        color: white;
        /* border: solid red 1px; */
        /* text-decoration: underline; */
    }
    #otherPage{
        gap: 0;
    }
    #otherPage p{
        margin-top: 3vh;
        margin-bottom: 3vh;
    }
}