.landing{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(204, 223, 242);

}


.landing_left{
    margin: auto;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}

.landing_left h1{
    font-size: 3em;
    font-weight: 600;
}
.landing_left h4{
    font-size: 1.5em;
    font-weight: 400;
    color: rgb(85, 85, 85);
}

.landing_cta{
    color: black;
    background-color: rgb(204, 223, 242);
    border: 0.5px solid black;
    padding: 8px 10px;
    margin: 10px 0;
    transition: background-color 0.3s, color 0.3s;
}
.landing_cta:hover {
    background-color: rgb(5, 0, 31);
    color: white;
}

.landing_right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
   overflow: hidden;
    
}
.landing_right img{
    object-fit: fill;
    
    scale: 1.1;
    
}

@media (max-width: 768px) {
    /* Change layout for screens up to 768px wide (typically tablets) */
    .landing {
        display: flex;
        flex-direction: column; /* Change to a normal block layout */
        text-align: center; /* Optional: Center content in the block */
    }
 
    .landing_left h1{
      margin: auto;
    }
    .landing_left h4{
        margin: 5px 0;
      }
    .landing_left{
        margin: auto;
        padding-top:5% ;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .landing_right{
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Change layout for screens up to 480px wide (typically mobile phones) */
    .landing {
        display: flex;
        flex-direction: column; /* Change to a normal block layout */
        text-align: center; 
    }
    .landing_left h1{
      margin: auto;
    }
    .landing_left h4{
        margin: 5px 0;
      }
   
    .landing_left{
        margin: auto;
        padding-top:5% ;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    
}

.slide-up {
    opacity: 1;
    transform: translateX(-50%) translateY(-100%);
}