:root {
    --primary: #ff004f;
    --secondary: #04aa6d;
    --tertiary: #3f51b5;
    --quaternary: #ffa500;
    --header: #2f3030;
    --footerText: #dfdfe0;
    --bodyBg: #080808;
    --commonBg: #262626;
  }
  
  .home .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.1rem 2rem 1.5rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .home .row .videoContainer {
    flex: 1 1 40%;
    position: relative;
    width: 100%;
    max-width: 600px;
  }
  
  .home .row .videoContainer video {
    width: 100%;
    aspect-ratio: 1/1;
    border: 0.3rem solid #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: auto;
    object-fit: cover;
  }
  
  .home .row .content {
    flex: 1 1 40%;
    width: 100%;
    max-width: 600px; 
    text-align: left;
  }
  #greeting {
    font-size: 2rem;
    font-weight: 400;
  }
  .home .row .content h3 {
    font-size: 3rem;
    background: linear-gradient(90deg, #fdbb2d, #22c1c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* color: var(--primary); */
  }
  .content #hello {
    font-size: 2rem;
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .content #me {
    font-size: 2.2rem;
    font-weight: 450;
    background: linear-gradient(90deg, #36d1dc, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .home .row .content .TypeContiner h1 {
    font-size: 2rem;
  }
  .btnLink{
    margin: 2rem 0;
    background: var(--tertiary);
  }
  .btnLink a{
    color: #e7f54e;
    text-decoration: none;
  }
  
  @media (min-width: 800px) {
    .home .row .videoContainer video {
      width: 100%;
      height: 70vh;
    }
  }
  
  @media (max-width: 768px) {
    .home .row {
      flex-direction: column;
      padding: 1.5rem;
    }
    .content #hello {
      font-size: 1.5rem;
    }
  
    .content #me {
      font-size: 1.7rem;
      font-weight: 450;
    }
    .home .row .videoContainer {
      margin-bottom: 2rem;
    }
  
    .home .row .content h3 {
      font-size: 2.2rem;
    }
  
    .home .row .content .TypeContiner h1 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .content #hello {
      font-size: 1.3rem;
    }
  
    .content #me {
      font-size: 1.3rem;
      font-weight: 450;
    }
    .home .row .content h3 {
      font-size: 1.6rem;
    }
  
    .home .row .content .TypeContiner h1 {
      font-size: 1.45rem;
    }
    .btnLink{
      margin: 0.8rem 0;
    }
  }
  