:root{
    --branding-color: #ff2e63;
    --secondary-color: #08d9d6;
    --third-color: #eaeaea;
    --black-color: #252a34;
    --heading-font-family: "bruno-ace", sans-serif;
    --default-font-family: 'Poppins', sans-serif;
    
}

body{
    font-family: var(--default-font-family);
}

h1, h2, h3, h4, h5, h6{
    color: var(--black-color);
    font-family: var(--heading-font-family);
    font-weight: bold;
}

h1{
    font-size: 96px;
    line-height: 1.5;
}

h2{
    font-size: 64px;
}

h3{
    font-size: 48px;
}

p{
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
}

.navigation-tab{
    background: var(--black-color);
}

.hero{
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    padding: 100px 20px;
}

.hero p {
    font-family: var(--default-font-family);
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #272142;
}

.hero h2{
    font-family: var(--default-font-family);
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
}

.project-hero{
    text-align: left;
    padding: 100px 20px;
}

.project-hero p{
    font-family: var(--default-font-family);
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #272142;

}

.project-hero h1{
    color: var(--black-color);
    font-family: var(--heading-font-family);
    font-weight: bold;
    font-size: 75px;
    line-height: 1.5;

}

.vainilla{
    background-image: url("../images/vainilla-weather-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.clock{
    background-image: url("../images/world-clock-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lisbon{
    background-image: url("../images/lisbon-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.poem{
    background-image: url("../images/poem-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.weather-r{
    background-image: url("../images/weather-r.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dictionary-r{
    background-image: url("../images/dictionary-r-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
  }
  
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

.btn-branding{
    background: var(--branding-color);
    border-radius: 4px;
    color: var(--third-color);
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
    transition: all 200ms ease-in-out;
}

.btn-branding:hover{
    background: var(--black-color);
    color: var(--third-color);

}

.content-container{
    padding: 60px 20px;
}

.content-container h3{
    font-size: 24px;
    line-height: 1.5;
    font-family: var(--heading-font-family);
}

.content-container p{
    font-size: 14px;
}

.content{
    margin: 30px;
}

.about-picture{
    margin: 30px;
}

.content-container h1{
    font-size: 64px;
    line-height: 80px;
}

.content-container h2{
    font-size: 18px;
    font-family: var(--default-font-family);
    color: var(--branding-color);
}

.content-container p{
    font-size: 16px;
    font-family: var(--default-font-family);
}

.me{
    border-radius: 15px;
}

.btn-branding-outline{
    color: var(--branding-color);
    border: 1px solid var(--branding-color);
    border-radius: 4px;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
    transition: all 200ms ease-in-out;
}

.btn-branding-outline:hover{
    background: var(--branding-color);
    color: var(--third-color);
}

.project-description{
    padding: 120px 60px 0 ;

}

.logo{
    max-height: 50px;
}

nav{
    padding: 10px 0;

}

nav ul{
    padding: 0;
    margin: 0;
}

nav li{
    display: inline;
    list-style: none;
    line-height: 42px;
    margin-left: 15px;
    
}

nav li.active a{
    color: var(--branding-color);
}

nav a{
    text-decoration: none;
    color: var(--third-color);
}

nav a:hover{
    text-decoration: none;
    color : var(--branding-color);
    transition: all 150ms ease-in-out;

}

.contact-title{
    font-size: 24px;
    color: var(--branding-color);
}

footer{
    margin: 60px 0;
}

footer p{
    color: var(--black-color);
}

footer .contact-box{
    background-color: var(--secondary-color);
    padding: 30px 120px;
    border-radius: 10px;
}

footer .contact-box p{
    margin: 0;
}

footer .social-links a{
    margin: 0 20px;
    color: var(--third-color);
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 10px 14px;
    font-size: 20px;
    transition: 150ms;
}

footer .social-links a:hover{
    color: white;
    background-color: var(--branding-color);
}

footer .email-link{
    text-decoration: none;
    color: black;
    font-size: 24px;
}

footer .email-link:hover{
    color: var(--branding-color);
}

@media (max-width: 600px){
    h1{
        font-size: 44px;
        line-height: 56px;
    }
    h2{
        font-size: 44px;
    }

    h3{
        font-size: 26px;
    }

    .hero{
        background: var(--secondary-color);
        background-image: none;
        padding: 80px 20px;
        text-align: center;
    }

    .project-hero {
        min-height: 60vh; /* o 100vh si quieres que llene la pantalla */
        display: flex;
        align-items: center;
      }

      .project-hero h1{
        font-size: 50px;
      }

    .vainilla{
        background-color: #edb321;
        background-image: none;
        text-align: center;
    }

    .clock{
        background-color: #5c5c99;
        background-image: none;
        text-align: center;
    }

    .lisbon{
        background-color: #008fc1;
        background-image: none;
        text-align: center;
    }

    .poem{
        background-color: #cfc3f4;
        background-image: none;
        text-align: center;
    }

    .weather-r{
        background-color: #f99430;
        background-image: none;
        text-align: center;
    }

    .dictionary-r{
        background-color: #9671f4;
        background-image: none;
        text-align: center;
    }
    
    .responsive-img {
        width: 300px !important;
        height: auto;
      }

    footer p{
        text-align: left;
    }

    .content-container{
        text-align: center;
        padding: 0;
    }

    .project-description{
        padding: 0%;
        text-align: center;
    }

    nav a{
        font-size: 14px;
    }

}