html,body {
    margin: 0;
    font-family: sans-serif;
    background-color: #0F2027;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 100vh; /* Ensures it fills the full height */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    position: relative;
  }
  *{
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
  }

  .hero {
    width: 100%;
    display: flex;
    flex-direction: column;
   justify-content: space-around;
    align-items:center;
    flex-wrap: wrap;
    background-color: #9055FF;
    padding-bottom: 50px;
  }

  .header {
    flex: 1;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .header .title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
    height: fit-content;
  }

  .header .siteTitle {
    font-size: 6rem;
    display: block;
    text-decoration: underline;
  }

  .start-button {
    padding: 25px 50px;
    font-size: 30px;
    font-weight: bold;
    margin-top: 30px;
    background-color: #1AA370 ;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    align-self: center;
    
  }
 
   .start-button:hover{
    background-color: #2CC98A;
  }

  .login-button {
    padding: 25px 50px;
    font-size: 25px;
    font-weight: bold;
    margin-top: 30px;
    background-color: #4C566A; 
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    align-self: center;
    margin-left: 30px;
  }
 
   .login-button:hover{
    background-color: #6D7D8C;
  }

  .bigBtnContainer{
    display: flex;
    flex-direction: row;
  }

  .description {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
    box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.4);
  }
  .description p{
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  .descriptionList {
    text-align: left;
    line-height: 1.7;
    background-color: #0B171D;
    border: 2px solid #9055FF;
    border-left: none;
    border-right: none;
  }



  .descriptionTop{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .smallLogo{
    width: 4rem;
    height: 4rem;
    align-self: center;
    margin: 0 20px;
  }
 .subHeader{
    margin-top: 50px;
    font-size: 2.5rem;
    text-decoration: underline;
    text-align: center;
  }
  

  .principles-section {
    width: 100%;
    background-color: #0B171D;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }



  .principles-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    gap: 30px;
  }

  .principle {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    text-align: center;
  }
  .principle p{
    font-size: 1rem;
  }

  .principle h3 {
    font-size: 2rem;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .footer {
    padding-top: 70px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 1rem;
    opacity: 0.7;
  }


  .walkthrough {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
   
  }
  .walkthrough .descriptionTop{
    margin-bottom: 50px;
  }
   .left{
    display: grid;
    grid-template-columns: 2fr 3fr;
    height: 300px;
    margin-bottom: 100px;
  }
  .right{
    display: grid;
    grid-template-columns: 3fr 2fr;
    height: 300px;
    margin-bottom: 100px;
  }
  .left .text{
    background-color: #1AA370;
    border-radius: 300px 0px 0px 300px;
    display: flex;
    flex-direction: column;
  }
  .right .text{
    background-color: #1AA370;
    border-radius: 0px 300px 300px 0px;
    display: flex;
    flex-direction: column;
  }
  .step .image{
    width: 350px;
    height: 300px;
    border:#2CC98A 2px solid;
    border-radius: 50px;
    resize: none;
  }
 .walkthroughHeader{
    font-size: 2.5rem;
    text-decoration: underline;
    margin-bottom: 0px;
  }
  .text p{
    width: 70%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
  }





@media (max-width:900px){
  .right{
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .left{
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .left .text,.right .text{
    border-radius: 30px 30px 30px 30px;
    margin-bottom: 30px;
  }
  .text p{
    width: 95%;
    font-size: 1.2rem;
  }
  .description p{
    width: 95%;
  }
  .header .siteTitle{
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
  }
  .header .title{
    font-size: 2.5rem;
    line-height: 1.1;
  }
  .smallLogo{
    margin: 0 5px;
  }
  .login-button{
    margin-left: 5px;
    font-size: 23px;
    padding: 20px 40px;
  }
  .start-button{
    padding: 20px 40px;
  }
}






