* {
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: auto;
    background-image: url('img/jb-flames.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.pai {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.A {
    display: flex;
    flex-direction: column;
}

.B {
    display: flex;
    flex-direction: column;
}

.C {
    display: flex;
    flex-direction: column;
}

.saibamais {
    font-size: x-large;
    width: 100%;
    height: 50px;
    background-color: rgb(54, 245, 54);
    color: black;
    border-radius: 10px;
    margin: 10px 10px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;

}

.saibamais:hover {
    background-color: yellow;
}

.botaomeio {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    width: 100%;
    height: 30px;
    background-color: black;
    color: aliceblue;
    border-radius: 10px;
    margin: 10px 0px;
    transition: 0.3s;

}

button:hover {
    background-color: white;
    color: black;
}

p {
    width: 100%;
    height: auto;
    font-size: 50px;
    color: aliceblue;
    text-align: center;
    margin-top: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    height: auto;
    margin: 20px 20px;
}


@media (max-width: 992px) {
    .pai {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
        gap: 20px;
    }

    .logotipo {
        width: 400px;
    }

    header {
        width: 90%;
    }

}

@media (max-width: 410px) {
    .logotipo {
        width: 300px;
    }

    p {
        font-size: 30px;
    }
}