@font-face {

    font-family: Eurostile;
    src: url(Fontes/EurostileLTStd.otf);
    font-weight: 400;
}

@font-face {
    font-family: Eurostile;
    src: url(Fontes/EurostileLTStd-Bold.otf);
    font-weight: 700;
}



/* apagar qualquer marca */

* {
    margin: 0;
    box-sizing: border-box;
}


h1 {
    color: orange;
    font-size: 60px;

    font-family: Eurostile, bold;
    font-weight: 700;

}

h2 {
    color: rgb(128, 52, 154);
    font-size: 30px;

    font-family: Eurostile, serif;
    font-weight: 400;

    padding-bottom: 10px;
    padding-top: 10px;

}

#h222 {

    line-height: 20px;

}

#h2222 {
    line-height: 30px;
    color: orangered;


}

#h22 {

    color: orangered;

    font-family: Eurostile, serif;
    font-weight: 400;
}

h3 {
    color: rgb(128, 52, 154);
    font: size 16px;

    font-family: Eurostile, serif;
    font-weight: 500;

    padding-bottom: 10px;
}

h4 {
    color: rgb(128, 52, 154);

    font-family: Eurostile, serif;
    font-weight: 500;

    padding-top: 10px;

}

h5 {

    line-height: 2;
}

p {
    font-family: Eurostile, serif;
    font-weight: 400;

    line-height: 23px;

    padding-bottom: 10px;
    padding-top: 10px;

}

ul {
    font-family: Eurostile, serif;
    font-weight: 400;

    padding-bottom: 35px;
}


img {
    display: block;
    width: 100%;

    padding-bottom: 10px;
}

#tudo {

    background-color: rgba(255, 166, 0, 0.705);
    width: 60%;

    margin-left: auto;
    margin-right: auto;

    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 50px;
    padding-left: 50px;
}

/* O div (caixinha) que tem o conteúdo todo precisa de um id, caso contrário os outros divs (caixinhas) vão sair um bocado do lado */

#eurostile {

    background-color: white;

    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px;

    border-bottom: 5px solid;
    color: rgb(128, 52, 154);
}

.orange {

    background-color: orange;

    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px;

}

#caracteristicas {

    background-color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px;

}


#fim {

    background-color: white;
    border-top: 5px solid;
    color: rgb(128, 52, 154);
    padding: 30px;

}

#logo {

    width: 100px;


}


#vox {

    width: 300px;
    display: block;
    margin: auto;


}

.centro {

    display: block;
    margin: auto;


}

#flex {

    display: flex;

}

#texto {

    width: 50%;

}

@media (max-width:600px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 18px;
    }

    #flex {
        flex-direction: column;
    }

    #vox {
        width: 100%
    }

    img {
        width: 100%;
    }

    #texto {
        width: 100%;
    }

    #tudo {

        width: 95%;

        margin-left: auto;
        margin-right: auto;

        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 20px;
        padding-left: 20px;
    }



}

}






/* O "id" é para uma marca, enquanto "class" é para varias. */
/* Os parágrafos também podem ter ids e classes*/
mmmmm