@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 18px;
    background: url(../imagens/bg.jpg) 0 0 / cover no-repeat;
    color: #681832;
    text-align: center;
}
img {
    max-width: 95%;
}
main {
    width: 80%;
    margin: 5vh auto 0;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.content p {
    letter-spacing: 10px;
    margin-top: 70px;
}

.linha1 {
    background-color: #681832;
    height: 13px;
    width: 100%;
}
.linha2 {
    background-color: #681832;
    height: 5px;
    width: 100%;
}

footer {
    text-transform: uppercase;
    font-size: .8em;
    color: #000;
}
footer .row {
    display: flex;
    justify-content: space-between;
    margin: 0 5% 2%;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
        min-height: 100vh;
        overflow: hidden;
    }
    main {
        width: 90%;
        height: 90vh;
    }
    .content p {
        margin-top: 50px;
    }
    footer .row {
        flex-direction: column;
        align-items: center;
    }
}