html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    
  
  
  }
  * {
    margin: 0;
    padding: 0;
  }

  body {
    background-color: transparent;
    font-family: "Poppins", sans-serif;
    background: hsl(0, 0%, 100%);
  }

 
  .fadein {
    opacity: 0;
    transition: all 1.5s;
    transform: translate(0, 100px);
  }
  
  .fadein.visible {
    opacity: 1;
    transform: translate(0, 0);
  }
  

  

  .bgSection {
    background-color: #44576f;
    height: 1000px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }

  .content {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    justify-content: center;
    font-size: 3rem;
    color: white;
    align-items: center;
  }

  #element {
    color: red;
  }

  .snow {
    height: 1000px;
    background-color: transparent;
  }

  .red {
    color: red;
  }

  .homepageInformation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
  }
  
  
  

  .logoContainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logoContainer img {
    width: 200px; /* Adjust the width as needed */
    height: 200px; /* Adjust the height as needed */
    border-radius: 50%;
  }
  
  
  .snow{
    pointer-events: none;
  }


  .resume {
    background: #f2edec;
    border-radius: 9px;
    width: 100px;
    font-size: 20px;
    cursor: inherit;
    border: 2px solid transparent;
    padding: 10px 10px;
    margin-top: 2rem;
  
  
  }
  
  .resume:hover {
    background: #c4544a;
    cursor: pointer;
  }



.topHeader {
    text-align: center;
    display: block;
    padding: 2rem;
    font-size: 3rem;
    color: black;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 3px;
  }
  
  .subHeader {
    display: block;
    letter-spacing: 2px;
  }
  
  .homepageInformation .formmContainer {
    margin: 2rem auto 0 auto;
    padding: 50px;
    box-shadow:none;
    max-width: 65rem;
  
  }
  .break{
    display: none;
  }

  .homepageInformation .formmContainer{
    max-width: 120rem;
  }

  section{
    margin-top: 10rem;
  }

  @keyframes bounce {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    50% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .bounce-element {
    animation: bounce 1s ease-in-out;
  }
  

  @media screen and (max-width: 480px) {
    .bgSection {
       
        height: 844px;
   
      }

      .break{
        display: block;
      }

      #result2{
        display: none;
      }
    
  }
  
