body{
    background: #6F7271;
}

.modal{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    color: black;
    font-family: 'Montserrat';
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    animation: modal 2s forwards;
    visibility: hidden;
    opacity: 0;    
}

.modal img {
    width: 3em;
    top: 50%;
}

.contenido {
    position: relative;
    padding: 3%;
    margin: auto;
    width: 40%;
    height: auto;
    background: white;
    /*border-radius: 10px;*/
    font-family: 'Montserrat';
}

    .boton_personalizado{
        position: relative;
        padding: 30px;
        font-family: 'Monsterrat';
        text-transform: uppercase;
        padding-left: 20px;
        padding-right: 20px;
        font-weight: 800;
        font-size: 15px;
        color: black;
        background-color: #9b0e0e;
      }
      .boton_personalizado:hover{
        color: #9b0e0e;
        background-color: #bc6355;
        text-decoration: none;
        cursor: pointer;
      }


@keyframes modal {
    100% {
        visibility: visible;
        opacity: 1;
        z-index: 50;
    }
}