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

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

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

header {
  text-align: center;
  padding: 50px;
  background-color: rgb(250, 219, 181);
}
  
.subrayado {
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 5px;
}
  
.contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-family: 'Raleway', sans-serif;
}
  
.imagen {
  max-width: 300px;
  margin-right: 30px;
}
  
.texto {
  max-width: 500px;
  text-align: justify;
}

h1{
  font-family: 'Merriweather', serif;
}

h2{
  font-family: 'Merriweather', serif;
}

