*{
    margin: 0;
    padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.header{
    background-color: #061b2c;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.header-title{
    color: #FFF;
}

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

.section-img{
    /* background-color: blue; */
    width: 30%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content-img{
    height: 95%;
    width: 80%;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.section-info{
    /* background-color: red; */
    margin: 10px 0px;
    width: 50%;
    height: 60vh;;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: space-evenly;
}

.footer{
    background-color: #f7f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-img{
    height: 70px;
    width: 150px;
}


@media (max-width: 500px){
    
    *{
        font-size: 12px;
    }

    .main-content{
        height: 90vh;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .section-img{
        /* background-color: yellow; */
        width: 80%;
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-content-img{
        height: 95%;
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    
    .section-info{
        margin: 10px 0px;
        width: 80%;
        height: 40vh;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items:flex-start;
        justify-content: space-between;
    }

}