* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    font-size: 3rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
  }
  
  .logo:hover {
    transform: scale(1.1);
  }
  
  nav {
    height: 50px;
    display: flex;
    flex-wrap: wrap;
  }
  
  nav a {
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
  }
  
  nav a:hover,
  nav a:active {
    color: #b74b4b;
    border-bottom: 3px solid #b74b4b;
  }
  
  section {
    min-height: 100vh;
    padding: 10rem 9% 5rem;
  }
  
  .home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .home-imag {
    border-radius: 50%;
  }
  
  .home-imag img {
    width: 27vw;
    border-radius: 50%;
    box-shadow: 0 0 25px #b74b4b;
    transition: 0.3s linear;
    cursor: pointer;
  }
  
  .home-imag img:hover {
    transform: scale(1.05);
  }
  
  .home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2rem;
  }
  
  .home-content h3 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .home-content p {
    font-size: 1.6rem;
    margin-top: 2rem;
    max-width: 600px;
  }
  
  span {
    color: #b74b4b;
  }
  
  .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    color: black;
    background-color: #b74b4b;
    transform: scale(1.3);
    box-shadow: 0 0 25px #b74b4b;
  }
  
  @media screen and (max-width: 991px) {
    html {
      font-size: 55%;
    }
  
    nav {
      flex-direction: column;
      align-items: flex-start;
      background-color: transparent;
      position: absolute;
      top: 100%;
      right: 0;
      width: 60%;
      padding: 1rem 2rem;
   
      border-bottom-left-radius: 2rem;
      transform: translate(-150px,-5px);
      padding-left: 2rem;

    }
    nav a {
      margin: 10px;
      font-size: 14px;
    }
  
    .home {
      flex-direction: column;
      gap: 5rem;
    }
  
    .home-imag img {
      width: 60vw;
    }
  
    .home-content h1 {
      font-size: 4.5rem;
    }
  
    .home-content h3 {
      font-size: 3rem;
    }
  
    .home-content p {
      font-size: 1.4rem;
    }

    section {
      margin-top: 50px;
    }
  }
  
  @media screen and (max-width: 600px) {
    html {
      font-size: 50%;
    }
  
    .home-content h1 {
      font-size: 3.5rem;
    }
  
    .home-content h3 {
      font-size: 2.5rem;
    }
  
    .home-content p {
      font-size: 1.3rem;
    }
  }
  
