/* Fuente */
@import url('https://fonts.googleapis.com/css?family=Oxygen&display=swap');

/* imports */
@import url("./reset.css");
@import url("./nav.css");
@import url("./aside.css");

:root {
  --main-color: #011627;
  --secundary-color: #d9dbd9;
  --tertiary-color: #83c4bd;
}

body {font-family: 'Oxygen', sans-serif;}

section {
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--secundary-color);
  background-image: url('../imagenes/home-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.presentacion {
  position: relative;
  width: 70%;
  top: 50%;
  left: 60%;
  transform: translate(-60%,-50%);
}
.presentacion h1 {
  font-size: 3em;
  text-align: center;
}
.presentacion p {
  text-align: center;
  font-size: 1.3em;
}