@import url('https://fonts.googleapis.com/css?family=Merriweather');
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic');

body {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image{
  width:50%;
  height: 100vh;
  background-image: url("../assets/fondo2.jpeg");
  background-size: cover;
  background-position: left center;
}

.main{
  width:50%;
}

hr{
  width:60%;
}

h1 {
  font-family: 'Nanum Gothic', sans-serif;
  font-size: 2.618em;
  margin: 0
}

p {
  font-family: 'Merriweather', serif;
  font-size: .8em;
}

a {
  font-size: 2em;
  color: #000;
  text-decoration:none;
}

span {
  font-style: italic;
  font-size: .8em;
}

@media (max-width: 780px){
  .image{
    display: none;
  }

  .main{
    width: 100%;
  }
}
