.hero {
    height: 95vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 50px;
    line-height: 60px;
}

.hero p {
    font-size: 20px;
    width: 80%;
}

iframe {
    border-radius: 5px;
    width: 380px;
    height: 380px;
}

.heroInfo {
    display: flex;
    flex-direction: column;
    width: 35%;
    height: 400px;
    text-align: start;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .hero {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 40px;
        padding-bottom: 10px;
    }

    .hero p {
        font-size: 17px;
        width: 200px;
    }

    .heroInfo {
        text-align: center;
        align-items: center;
    }

    iframe {
        padding-bottom: 50px;
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 40px;
        line-height: 40px;
        padding-bottom: 10px;
    }

}