/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}


:root {
  --primary-color: rgba(13, 110, 139, 0.75);
  --overlay-color: rgba(24, 39, 51, 0.85);
  --menu-speed: 0.75s;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

body {
  font-family: 'Ubuntu', sans-serif;
  line-height: 1.4;
}

.container{
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0;
}

.showcase {
  /*background-color: var(--primary-color);*/
  color: #fff;
  height: 100vh;
  position: relative;
}

.showcase::before {
  content: '';
  background: url(../img/autora.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.showcase .showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.showcase h1 {
  font-size: 4rem;
  font-weight: 100;
}

.showcase h2 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  color: white;
  letter-spacing: 0.2rem;
}

.showcase h3 {
  margin-top: 1rem;
  letter-spacing: 0.1rem;
}

.showcase p {
  font-size: 1.5rem;
}

.boton {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  /*-webkit-box-shadow: 0 0 8px rgba(248, 248, 248, 0.6);
         -moz-box-shadow: 0 0 8px rgba(248, 248, 248, 0.6);
              box-shadow: 0 0 8px rgba(233, 229, 229, 0.6);*/
  
  transition: 0.2s ease-in-out;
}
.boton svg {
  color: white;
  padding: 5px;
  border: 1px solid white;
  border-radius: 50%;
}

.boton:hover {
  transform: scale(1.03);
  
}

.boton svg:hover {
  color: var(--primary-color);
  background-color: white;
  transform: scale(1.03);
 
}

.double {
  color: white;
  padding: 0 5px;
  border: 1px solid white;
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}

.double:hover {
  color: var(--primary-color);
  background-color: white;
  transform: scale(1.03);
}

/*MENU*/
.nav {
  position: absolute;
  left: 30px;
  z-index: 1;
}
.nav-link {
  color: white;
  font-size: 20px;
  letter-spacing: 0.3rem;
  transition: all 0.4s ease-in-out;
}

.nav-link:hover {
  color: #05f2fa;
  font-size: 22px;
}

.menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}


/*HAMBURGUESA*/

.menu-wrap .hamburger > div {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}


/*como hacer las lineas*/
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 3px;
  background: #fff;
}

.menu-wrap .hamburger > div::after {
  top: 10px;
}

/*ANIMACION*/

.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg)
}

.menu-wrap .toggler:checked + .hamburger > div::before,
.menu-wrap .toggler:checked + .hamburger > div::after {
  top: 0;
  transform: rotate(90deg);
}

/*ROTAR CUANDO PULSAMOS*/
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/*VER MENU*/

.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 2rem;
  padding: 1rem; 
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease;
}

.menu-wrap .menu > div > div > ul > li > a:hover {
  color: #dd05fa;
  font-size: 2.5rem;
}

/*boton para subir*/
.up {
  background: var(--primary-color);
  position: fixed;
  bottom: 20px;
  right: 15px;
  padding: 0 20px;
  cursor: pointer;
  color: white;
  font-size: 40px;
  transition: color 0.4s linear;
  border-radius: 100%;
  z-index: 4;
}

.card .nav-link{
  color: black;
  transition: 0.2s ease-in-out;
}

.card .nav-link:hover {
  color: black;
  transform: scale(1.05);
}

.card img {
  transition: 0.2s ease-in-out;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.6);
}

.card-body p {
  font-family: 'Playfair Display', serif;
  color: rgb(0, 0, 0);
}

#mood {
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 700;
}

#mood2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  
  
}
/*.card img:hover {
  transform: scale(1.05);
}*/

/*FOOTER*/
.social {
  font-family: 'Ubuntu', serif;
  font-weight: 400;
    font-size: 35px;
    letter-spacing: 2px;
    color: rgb(214, 142, 7);
    }
    
.social a {
    color: rgb(248, 247, 246);
    font-size: 2rem;
    padding: 0 15px;
    transition: color 0.4s ease-in-out;
    }
    
.social a:hover {
    color: rgb(214, 142, 7);
    text-decoration: none;
    }
    
.footer {
  background: rgb(0, 0, 0);  
  color: rgb(214, 142, 7); 
  padding: 20px 0; 
  text-align: center;  
  font-size: 15px; 

}

@media screen and (max-width: 1024px) {
  .nav {
    left: -20px;
  }
  #logo {
    width: 40%;
  }

  .showcase h2 {
    font-size: 40px;
  }
  .showcase #stand {
    width: 35%;
  }
   
}

@media screen and (max-width: 768px) {
  .nav {
    visibility: hidden;
    left: 0;
  }
  #logo {
    width: 60%;
  }
  .nav-link {
    font-size: 20px;
    letter-spacing: 0;
  }
  .showcase h2 {
    font-size: 40px;
  }
  .showcase #stand {
    width: 90%;
  }
}

#stand {
 width: 25%;
 transition: transform 0.3s;
}

#stand:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
#autora {
  height: 200px;
  width: 200px;
  transition: background 0.8s;
  border-radius: 50%;
  background: url(../img/yolanda.png) center center no-repeat;
  background-size: 200px;
}

#autora:hover {
  background: url(../img/yolanda.png) center center no-repeat;
  background-size: 400px;
}

#autora a {
  color: white;
  font-size: 15px;
  margin-top: 300px;
  text-decoration: none;
  opacity: 1;
}

/*#autora:hover  a {
  opacity: 1;
}*/