html, body {
    height: 100%;
   
  }
  
  .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .button {
    min-width: 300px;
    min-height: 60px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #4f97d1;
    background: linear-gradient(90deg, #4f97d1 0%, #4f97d1);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px #4f97d1;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    display: inline-block;
    width: 10%;
    }
  
  button::before {
  content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #4b4b4b;
    box-shadow: 0 0 60px #4f97d1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  
  .button:hover, .button:focus {
    color: #313133;
    transform: translateY(-6px);
  }
  
  button:hover::before, button:focus::before {
    opacity: 1;
  }
  
  button::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #4f97d1;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  button:hover::after, button:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }

  .xabia {
    background-color: white;
    margin-top: -9px;
    margin-left: -9px;
    margin-right: -9px;
    text-align: center;
    border: 2px black solid;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Archivo Black', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    color: white;
    background-image: url(https://multimedia.comunitatvalenciana.com/CF437111E1BA4ADDB2CD6399633E3655/img/0BB76FC8642545F5B03313B813B6C101/2.jpg?responsive);
    background-repeat: no-repeat;
    background-position-y: -490px;
}
 
.tit2 { 
  font-family: 'Raleway', sans-serif;
  height:15px;
  text-align: center;
  line-height: 50px;
}

.logos {
  width: 300px;
  margin-bottom: 10px;

}

