@font-face {
    font-family: Jenson;
    font-weight: bold;
    src: url(fontes/AJensonPro-Bold.ttf);
}

@font-face {
    font-family: Jenson;
    font-weight: normal;
    src: url(fontes/AJensonPro-Regular.ttf);
}


* {
    margin: 0;
}

h1 {
    color: rgb(255, 0, 0);
    font-size: 60px;
    font-family: Jenson, serif;
    font-weight: bold;
}

h2 {
    color: rgb(255, 0, 0);
    font-size: 30px;
}

h4 {
    margin-top: 20px;
}

p {
    font-family: Jenson, serif;
    font-weight: normal;
}



img {
    width: 100%;
    display: block;
}


body {
    background-color: beige;
}

#contentor {

    width: 70%;
    max-width: 1000px;

    background-color: rgb(219, 219, 219);
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    margin-top: 100px;
    margin-bottom: 100px;
}


#cabecalho {

    background-color: rgb(255, 255, 255);
    padding: 40px;

    margin-bottom: 50px;

    border-bottom: 8px solid red;

}

.seccoes {

    background-color: rgb(255, 255, 255);
    margin-bottom: 50px;
    padding: 40px;
}

#rodape {
    background-color: white;
    border-top: 8px solid red;
    padding: 40px;
}

#logo {
    width: 100px;
}

#qualquercoisa {
    width: 50%;
}

#coisinha {
    margin-bottom: 20px;
    width: 400px;
}

#nicolasjenson {
    width: 400px;
}

#texto {
    width: 50%;
}

#aplica_flex {
    display: flex;
    align-items: flex-start;
}

@media (max-width:500px) {



    #aplica_flex {
        flex-direction: column;
    }

    #texto {
        width: 100%;
    }


    #nicolasjenson {
        width: 100%;
    }

    #coisinha{
        width:100%;
    }



}