.home-about{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(115deg, #3333F5 27.1%, #3381F5 66.15%, #3381F5 100%);
}
.home-about .about-content{
    display: flex;
    gap: 50px;
}
.home-about .about-content .about-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 100%;
    height: 100%;
    max-width: 350px;
    max-height: 350px;
    min-height: 300px;
    border-radius: 10px;
    padding: 20px;
}
.home-about .about-content .about-logo img{
    width: 100%;
}

.home-about .about-content .about-text{
    display: flex;
    flex-direction: column;
    max-width: 600px;
}
.home-about .about-content .about-text p{
    font-size: 20px;
    flex: 5;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}
.home-about .about-content .about-text h1{
    flex: 5;
    font-family: "Space Grotesk", sans-serif;
    font-size: 55px;
    font-weight: 400;
    color: white;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    
}
.home-about .about-content .about-text a{
    flex: 2;
    background-color: white;
    color: #3381F5;
    font-family: "Space Grotesk", sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding: 12px 40px;
    border-radius: 24px;
    max-width: fit-content;
    max-height: fit-content;
    transition: all 0.5s;

}
.home-about .about-content .about-text a:hover{
    background-color:#3381F5;
    color: white;
    transform: scale(1.2);
    
}