/* RESET CSS */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* FIN RESET CSS */
/* ESTILOS GENERALES */
body {
    background-color: #FCFCF6;
}
h1, h2, h3 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-style: normal;
    color:black;
    padding: 0%;
    text-align: center;
}
h1 {
    font-size: 1.5em;
}
h2 {
    font-size: 1.25em;
}
h3 {
    font-size: 1em;
}
p {
  padding-left: 15px;
  font-family: "lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* FIN ESTILOS GENERALES */
/* CABECERA */
#cabecera {
    width: 100%;
}
#logo {
    width: 90vw;
    height: 10vh;
    margin-top: 5vh;
    background-image: url("../imgs/logo.png");
    background-repeat: no-repeat;
    background-size: 15vw;
    background-position-x: center;
}
/* FIN CABECERA */
/* CUERPO */
#cuerpo {
    width: 90vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -2.5vh;
}
#cuerpo img {
  width: 10vw;
  padding-top: 2.5vh;
}
#cuerpo h1{
  padding-top: -5vh;
}
/* FIN CUERPO */
/* INTRO */
#intro {
  margin-top: 12.5vh;
}
#intro h1 {
  padding: 10px;
}
/* FIN INTRO */
/* CONTENIDO */
#flechaseparacion{
  width: 20vw;
  position: relative;
  left: 40vw;
}
#contenido {
  width: 100vw;
  background-color: black;
  margin-top: 10vh;
  margin-left: -2.5vw;
}
.titulo {
  text-align: left;
  margin-left: 5vw;
}
#contenido h1, #contenido h2, #contenido p {
  color: #FCFCF6;
}
#contenido .muestra h3, #contenido .muestra p {
  color: black;
  margin-right: 2.5vw;
}
.muestra {
  width: 80vw;
  border-radius: 5px;
  background-color: white;
  margin-left: 10vw;
  padding-bottom: 5vh;
}
.muestra img {
  width: 50vw;
  margin-left: 15vw;
}
#flechaseparaciondos{
  width: 20vw;
  position: relative;
  left: 40vw;
}
/* FIN CONTENIDO */
/* COMOTRABAJO */
#comotrabajo .titulo {
  text-align: center;
}
#comotrabajo .telo {
  position: relative;
  left: 2vw;
}
/* FIN COMOTRABAJO */
/* CONTACTO */
#contacto h2{
  text-align: left;
  padding-left: 3vw;
}
#contacto .titulo {
  text-align: center;
}
.boton {
  padding: 10px 20px;
  border-radius: 10px;
  position: relative;
  left: 30vw;
  background-color: green;
  color: #FCFCF6;
  font-family: "lato", sans-serif;
  font-weight: 700;
  text-decoration: none;
}
/* FIN CONTACTO */
/* PIE */
#pie p{
  text-align: center;
  padding-bottom: 5vh;
}
#pie h2, #pie h3 {
  text-align: center;
}
#redes a img{
  width: 15vw;
  float: left;
  padding-left: 5vw;
}
#redes {
  width: 80vw;
  position: relative;
  left: 30vw;
}
.cookie-consent {
  width: 100vw;
  position: fixed;
  bottom: 0;
  background-color: black;
  padding: 20px;
  text-align: center;
  display: none;
}

.cookie-consent p {
  color: white;
  margin: 0 0 10px 0;
}

.cookie-consent button {
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}
/* FIN PIE */
/* MEDIA QUERYS TALBET*/
@media screen and (min-width: 425px) and (max-width: 768px) {

}
/* FIN MEDIA QUERYS TABLET */
/* MEDIA QUERYS ESCRITORIO */
@media screen and (min-width: 768px) {
  #logo {
    width: 90vw;
    height: 15vh;
    margin-top: 5vh;
    background-image: url("../imgs/logo.png");
    background-repeat: no-repeat;
    background-size: 5vw;
    background-position-x: center;
  }
  #cuerpo {
    width: 50vw;
    position: relative;
    top: 0vh;
    left: 20vw;
}
  #cuerpo img {
    width: 2.5vw;
    margin-top: 10vh;
  }
  #intro {
    width: 50vw;
    margin-left: 20vw;
  }
  #intro p {
    margin-top: 10vh;
    margin-bottom: 25vh;
  }
  #flechaseparacion {
    width: 5vw;
    margin-left: 7.5vw;
  }
  #contenido .titulo {
    margin-left: 25vw;
  }
  #contenido > p {
    margin-left: 24vw;
  }
  .muestra {
    width: 50vw;
    margin-left: 25vw;
  }
  .muestra img {
    width: 10vw;
    margin-left: 20vw;
  }
  #contenido .muestra h3 {
    text-align: center;
    margin-right: 0vw;
  }
  #contenido .muestra p {
    text-align: center;
    margin-right: 0vw;
  }
}
/* FIN MEDIA QUERYS ESCRITORIO */