html{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}


.content{
    margin-bottom: 0px;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content .title{
    padding-left: 50px;
    width:85%;
    position: relative;
    top: -10px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0cc753;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: solid 2px #b2b2b2;
    font-size: 22px;
}

.section{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    margin : 0px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.content p{
    color: rgb(0, 0, 0);
    font-size: 18px;
}
.link{
    color: #068b39;
}
.link:hover{
    color: #0cc753
}


#contact{
    position: relative;
    top: -50px;
    margin: 10px;
    margin-left: 40px;
}

iframe{
    width: 500px;
    height: 300px;
    margin: 20px;
    border-radius: 5px;

}


@media only screen and (max-width: 900px) {
    .content p{
        color: rgb(0, 0, 0);
        font-size: 16px;
    }
    .section{
        flex-direction: column;
    }
    #contact{
        top: 0px;
    }
}

@media only screen and (max-width: 550px) {
    .content p{
        color: rgb(0, 0, 0);
        font-size: 16px;
    }
    .content{
        margin-top: 0;
      }
    .content .title{
        padding-left: 10px;
    }
    #contact{
        margin-left: 20px;
    }
    iframe{
        width: 350px;
        height: 200px;
        margin: 10px;

    }
}
@media only screen and (max-width: 375px ) {
    iframe{
        width: 300px;
        height: 160px;
        margin: 10px;

    }
}