*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: linear-gradient(to right, rgba(243,144,79,1) 0%,rgba(243,144,79,0.89) 30%,rgba(104,97,80,0.8) 56%,rgba(2,62,80,0.8) 75%);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 16px;
}

.principal{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 8px;
    padding: 100px 280px;
}

.button-container {
margin: 30px;
padding: px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
@media screen and (max-width: 930px) {
  .button-container {
  flex-direction: column;
}
}


.button {
    position: relative;
    color: white;
    text-decoration: none;
    background:  #21263f;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 16px;
    border: 2px solid;
    padding: 10px 20px;
    margin: 20px;
    box-shadow: 0 4px 10px 0 rgba(3,6,26,0.15);
    transition: .5s all ease-in-out;

}

.button:hover {
  cursor: pointer;
  background: white;
  color: black;
  animation: none;
  background: linear-gradient(to right, rgba(243,144,79,1) 0%,rgba(243,144,79,0.89) 30%,rgba(104,97,80,0.8) 56%,rgba(2,62,80,0.8) 75%);
}


.button-pulse {
    animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
    box-shadow: 0 0 0 0 white;
  }
  @keyframes pulse {
    to {
      box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); 
    }
  }



h1{
    font-size: 50px;
    font-family:'Times New Roman', Times, serif;
}

h3{
    font-family: pacifico;
    font-size: 24px;
    margin-bottom: 20px;
}

.main-footer{
    margin-top: 120px;
    text-align: center; 
}

h4{
    margin-top: 25px;
}

i{
    padding: 5px;
    font-size: 25px;
}