.home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    font-size: 18px;
}
.home > h1{ 
    font-size: 40px;
    color: rgb(var(--clr-blue));
}
.home > h2, h3{ 
    font-size: 27px;
    color: rgb(var(--clr-blue));
}
.home-article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-block: 3rem;
}
.home-headline{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
    /*border-bottom: 2px solid #292f50;*/
}

.home-headline > h1{
    font-size: 40px;
    color: rgb(var(--clr-blue));
}
.home-subtitle{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: rgb(var(--clr-blue));
}
.home-subtitle > h3{
    font-size: 27px;
    color: rgb(var(--clr-blue));
    padding-bottom: 2rem;
}
.home-text{
    margin-block: 1 2em;
    padding: 15px;
    width: 90%;
    font-size: 18px;
}
@media screen and (max-width: 1000px) {
    .home-article{
        width: 100%;
        padding-inline: 1rem;
    }
    .home-text{
        width: 100%;
        padding-inline: 0;
        font-size: 16px;
    }
    .home-subtitle > h3{
        font-size: 24px;
        padding-bottom: 0rem;
    }
}
@media screen and (max-width: 600px) {
    .home-article{
     margin-bottom: 1rem;
    }
    .home-subtitle{
        justify-content: center;
    }
    .home-subtitle > h3{
        
        color: rgb(var(--clr-blue));
        padding-bottom: 0rem;
    }
    .home-text{
      margin-block: 0 1em;
    }
}