
#hero{
    display: flex;
    width: 100%;
    padding-top: 5vh;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5vh;
}
#content{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 24px;
    gap: 16px;
}
#imgWrapper{
    width: 100%;
    display: flex;
    justify-content: end;
    
}
img{
    width: 400px;
    height: 300px;
    border-radius: 12px;
}
#txt{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 36px;
    gap: 20px;
}

#bottomTxt{
    display: flex;
    flex-direction: column;
}
#footer{
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media only screen and (max-width: 900px){
    #content{flex-direction: column;}
    #imgWrapper{justify-content: center;}
    #txt{
        font-size: 32px;
        align-items: center;
        text-align: center;
    }
    #footer{flex-direction: column;}
}
@media only screen and (max-width: 550px){
    img{height: 240px; width: 320px;}
    #txt{
        font-size: 24px;
    }
}
