/* CSS sitio */
/* Fuentes de la web */
@font-face {
  font-family: Zaira Pulido;
  src: url("../fonts/FuturaStdBook.otf");
}
@font-face {
  font-family: Tarpuy;
  src: url("../fonts/Baskerville-Regular.otf");
}
@font-face {
  font-family: Tarpuy Italic;
  src: url("../fonts/Baskerville Italic.ttf");
}
body {
  color: #6F6F6E;
  overflow-y: hidden;
  background-color: #ffffff;
  font-family: Zaira Pulido;
}
main {
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  align-items: center;
  justify-content: end;
}
a {
  color: #6F6F6E;
  text-decoration: none;
}
a:hover {
  color: #7F7F7F;
  text-decoration: none;
}
a:focus {
  outline: none;
  color: #7F7F7F;
}
.img-background {
  top: -50%;
  left: -50%;
  width: auto;
  height: auto;
  position: absolute;
  transition: opacity 1.5s ease-in;
}
.cont-info {
  padding: 50px 0;
  background-color: rgba(255,255,255,0.6);
}
.cont-info img {
  margin: 0 0 30px 0;
  display: inline-block;
}
.cont-info h3 {
  margin: 0;
  position: relative;
  font-family: Tarpuy;
}
.cont-info h3::after {
  content: "";
  height: 2px;
  width: 60px;
  bottom: -10px;
  position: absolute;
  left: calc(50% - 30px);
  background-color: #6F6F6E;
}
.cont-info p {
  margin: 40px 0;
  font-size: 1.5em;
  font-family: Tarpuy Italic;
}
.cont-info p#texto-email {
  margin: 15px 0 0 0;
  font-size: 1.3em;
  font-family: inherit;
}
.cont-info ul {
  margin: 0 auto;
  display: inline-flex;
}
.cont-info ul li {
  padding: 0 25px;
}

@media only screen and (min-width: 768px) {
  .img-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
