:root {
    --branding-color:#001f3f;
    --secondary-color: #ffffff;
    --heading-font-family: "Inconsolate", serif;
    --default-font-family:"Jersey", sans-serif; 
  }
  
  body {
    font-family: var(--default-font-family);
    background-color: var(--secondary-color);
  }
  
  h1,h2,h3 {
    font-family:var(--heading-font-family);
    font-weight: bold;
  }
  
  h1 {
    font-size: 90px;
    line-height: 1.5;
    color: var(--branding-color);
    text-align: center;
  }
  
  h2 {
    font-size: 64px;
    color: var(--branding-color);
  }
  
  h3 {
    font-size: 40px;
  }
  
  p {
    font-size: 16px;
    line-height:30px;
    font-weight: normal;
    color: var(--branding-color);
  }

  img {
    max-width: 100%;
    height: 800px;
  }
  
  nav {
    padding: 20px 0;
  }
  
  nav ul {
  padding: 0;
  margin: auto;
  }
  
  nav li {
    display: inline;
    list-style: none;
    line-height: 40px;
    margin-left: 15px;
    cursor: pointer;
  }
  
  nav a {
    color: #c0c0c0;;
    text-decoration: none;  
    cursor: pointer;
  }
  
  nav a:hover,
  nav li.active a {
    color: var(--branding-color);
    text-decoration: none;
    transition: all 100ms ease-in-out;
  }
  hr {
    border: 2px solid #000000;
    border-radius: 10px;
  }
  
  footer {
    margin: 40px 0;
    color: var(--branding-color);
  }
  
  footer .contact-box {
    background: #c0c0c0b3;
    padding: 30px 60px;
    border-radius: 10px;
  }
  
  footer .contact-box p {
    margin: 0;
  }
  
  footer .social-links a {
    font-size: 14px;
    color: #c0c0c0;
    background-color: var(--branding-color);
    border-radius: 50%;
    margin: 0 10px;
    padding: 8px 12px;
    transition: all 150ms ease-in-out;
    cursor: pointer;
   
  }
  footer .social-links a:hover {
    color: var(--branding-color);
    background-color: #c0c0c0;
  }
  
  .hero {
    background-color:#c0c0c0b3;
    text-align: center;
    padding: 50px 10px; 
  }
  
  .hero p {
   font-size: 36px;
   font-weight: bold;
   margin: 0;
   padding: 0;
   color:var(--branding-color)
  }
  
  .hero h2 {
    font-family: var(--default-font-family);
    font-weight: normal; 
    font-size: 24px;
    line-height: 1.5;
  }
  
  .about {
    margin: 0;
  }

  .work-pictures {
    font-size: 30px;
  }
  .hero-contact {
    background-color: var(--branding-color);
    text-align: center;
  }
   
  .spanish {
    font-size: 25px;
  }
  
  .content-container {
  padding: auto;
  }
  
  .work-list {
    padding-left: 90px;
      text-align: initial;
      list-style: none;    
  }

  .content h1 {
    font-size: 40px;
    line-height: 50px;
  }
  
  .content h2 {
   font-size: 18px;
   font-family: var(--default-font-family); 
  }
  
  .content h3 {
    font-size: 24px;
    line-height: 1.5;
    font-family: var(--default-font-family);
  }
  
  .content p {
    font-size: 14px;
  }
  
  .content {
    margin: 30px;
  }
  
  .btn-branding {
    background: var(--branding-color);
    color: white;
    border-radius: 4px;
    font-size:18px;
    line-height: 27px;
    padding: 15px 30px;
    cursor: pointer;
  }
  .btn-branding:hover {
   color: var(--branding-color);
    background-color: #ffffff;
    transition: all 150ms ease-in-out;
  }
  
  .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; 
    margin: 0;
    cursor: pointer;
  }
  
  .btn-branding-outline:hover {
    color: #c0c0c0;
    background-color: var(--branding-color);
    transition: all 150ms ease-in-out;
  }
  
  .project-description {
    padding: 60px 20px;
  }
  
  .logo {
  height: 56px;
  }

  .contact-section {
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-intro > * + * {
    margin-top: 1rem;
  }
  
  .contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
  }
  
  .contact-description {
    color: rgb(107 114 128);
  }

  .spanish {
    padding: 10px;
  }

  .icon {
    display: flex;
    max-width: 600px; 
    height: auto;
    padding-top: 165px;
  }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    text-align: center;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--branding-color);
    border-radius: 5px;
}

.carousel-inner {
  margin: auto;
  padding: auto;
  width: 80%;
  height: 80%;
}

button {
    background-color: var(--branding-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #c0c0c0;
    color: var(--secondary-color);
}
 
  @media (max-width: 900px) {
    h1 {
      font-size: 40px; 
      line-height: 56px; 
    }
  
    h2 {
      font-size: 40px;
    }
  
    h3 {
      font-size: 26px;
    }

    .about{
      margin: 20px;
    }

    .content h1 {
      font-size: 40px;
      line-height: 40px;
    }
 
    .content {
      text-align: center;
      padding: 0;
    }
  
    .project-description {
      padding: 0;
      text-align: center;
    }

    .logo {
      height: 46px;
      width: 140px;
    }

    .carousel-inner img {
      height: 100%;
    }

    .work-list {
      display: flex;
      justify-content: space-around;
      padding: 0;
      list-style: none;
    }
    .work-list ,li{
      display: inline-block;
    }
  }

  @media all and (device-width: 810px) and (device-height: 1080px) and (orientation:portrait) {

    .carousel-inner img {
      height: 400px;
    }

  }
  @media all and (device-width: 1080px) and (device-height: 810px) and (orientation:landscape) {
  
    .carousel-inner img {
      height: 300px;
    }

  }