.modal-container {
    width: 100%;
    height: 100vh;
    
    position: fixed;
    left: 0;
    top: 0;
    
    display: grid;
    place-items: center;
    
    opacity: 0;
    pointer-events: none;
    
    transition: opacity 0.15s;
  }
.modal{
    background-color: #fefefe;
    width: 450px;
    height: 220px;
    margin-bottom: 400px;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 #00000070;
    overflow: hidden;
    transition: width 0.15s, height 0.15s;
}
.texto-modal{
    font-family: Karla;
    font-size: 20px;
    color:black;
    text-align: center;
    line-height: 1.5;
    padding: 0.8rem;
}
.link-page-edital{
    width: 180px;
    padding: 0.6rem 2rem;
    background-color: #f60101;
    color: #fefefe;
    font-family: TextMeOne;
    font-size: 17px;
    text-align: center;
    border-radius: 5px;
    margin-top: 15px;

}
.link-page-edital:hover{
    background-color: black;
    font-weight: bold;
    color: #f60101;
    transition: 0.5s background;
}

.link-edital-queer{
    text-decoration: none;
    color: #fefefe;
}
.open-modal-button:hover{
    background-color: #fefefe;
    font-weight: bold;
    color: #f60101;
    transition: 0.5s background;
}
.modal-show > .modal{
    width: 450px;
    height: 220px;
}
.modal-show {
    top: 75px;
    opacity: 1;
    pointer-events: auto;
  }
  
/* Responsividade*/

@media screen and (max-width: 480px){
.open-modal-button{
   margin: 0 auto;
   
}
.modal{
    background-color: #fefefe;
    width: 90%;
    height:240px;
   }
   .modal-edital{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
   }
   .modal-show > .modal{
    top: 15px;
    width: 90%;
    height: 240px;
}
}
