@import url('https://fonts.googleapis.com/css2?family=Caprasimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: bisque;
}
  
nav {
  display: flex;
  justify-content: flex-start;
  padding: 10px;
  background-color: #333;
}
  
.boton {
  color: #fff;
  text-decoration: none;
  background-color: #5a511c;
  color: #fff;
  border: 2px solid #5a511c;
  padding: 5px 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: transparent;
  color: #b39f2e;
}

header {
  text-align: center;
  padding: 50px;
  background-color: rgb(250, 219, 181);
}
  
.subrayado {
  font-family: 'Merriweather', serif;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 5px;
}
  
.contenido {
  padding: 50px;
}

h1{
  font-family: 'Merriweather', serif;
}
  
h2 {
  margin-top: 30px;
  font-family: 'Rubik Mono One', sans-serif;
}
  
.texto-grande {
  text-align: justify;
  line-height: 1.5;
  font-family: 'Caprasimo', cursive;
}
  
.texto-pequeño {
  text-align: justify;
}
  
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
  
.galeria img {
  max-width: 250px;
  margin-bottom: 10px;
}
  
.contactos {
  list-style: none;
  padding-left: 0;
}
  
.contactos li {
  margin-bottom: 10px;
}
  
.contactos a {
  text-decoration: none;
  color: #333;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 10px;
  background-color: #333;
  z-index: 9999;
}

span{
  font-family: 'Raleway', sans-serif;
}

.galeria img {
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.1);
}
