@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Koulen&family=Magra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
    background-color: #0f5f85;
    color: #bfdbd8ea;
    box-sizing: border-box
}

main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin: auto;
    flex-wrap: nowrap;
}

.navegador{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

header{
  text-align: center;
  display: flex;
  width:100vw;
  height: 2vh;
  background-color:rgb(36, 55, 59);
  color: #bfdbd8ea;
  position: fixed;
  top:0;
}

footer{
  text-align: center;
  width:100vw;
  height: 2vh;
  background-color:rgb(36, 55, 59);
  color: #bfdbd8ea;
  position: fixed;
  top:0;
}

h1{
    color: rgb(231, 224, 211);
    font-family: 'Koulen', cursive;
    font-size: 50px;

}

h2{
  font-family: 'Magra', sans-serif;
  color: #ede6d1;
}

.textos{
  font-family: 'Magra', sans-serif;
  width: 60%; 
}

p{
  font-family: 'Magra', sans-serif;
  color: #e6dcbe;
}

.foto{
  display: flex;
  margin-left: 5%;
  width: 25%;
}

.foto img{
  width: 100%;
}

.titulo1{
margin-bottom: 20%;
font-size: medium;

}

/* From uiverse.io by @WhiteNervosa */
button {
    font-size: 23px;
    color: #cce7e4;
    font-family: 'Bebas Neue', cursive;
    font-weight: 1500;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
  }
  
  button:focus,
  button:hover {
    color: #cce7e4;
  }
  
  button:focus:after,
  button:hover:after {
    width: 100%;
    left: 0%;
  }
  
  button:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #cce7e4;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
  }

