@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #0F0F0F;
    color: snow;
    font-weight: 300;
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.home-container {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
}

.home-hello {
    font-size: 19px;
    margin-bottom: -15px;
    font-weight: 400;
}

.home-title {
    color: #3962E9;
    font-size: 60px;
    font-weight: 700;
    overflow-x: hidden;
    max-width: 100%;
}

.home-description {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width: 599px) {
    .home-title {
        font-size: 48px;
    }
    .home-description {
        font-size: 15px;
        line-height: 20px;
    }
    .home-hello {
        font-size: 17px;
        margin-bottom: -15px;
    }
    .home-container {
        margin-top: 50px;
    }
    /* .home-case-projects {
        width: 100%;
    } */
    .home-case-projects {
        min-height: 65px;
    }
}

@media screen and (max-width: 399px) {
    .home-title {
        font-size: 40px;
    }
    .home-description {
        font-size: 15px;
        color: #e7e7e7;
        line-height: 18px;
    }
    .home-hello {
        font-size: 14px;
        margin-bottom: -10px;
    }
}

@media screen and (max-width: 319px) {
    .home-title {
        font-size: 30px;
    }
}
