@import url('https://fonts.googleapis.com/css2?family=Rochester&display=swap');
/* Rochester */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    display: flex;
    justify-content: space-around;
}

.container,
.suba {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0 5rem;
}

.suba {
    margin-top: -11vh;
}

.container .descricao{
    justify-content: center;
    align-items: center;
    align-self: center;
    max-width: 800px;
}

p.texto {
    font-weight: lighter;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 25px;
}

h1.titulo {
    font-weight: lighter;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 40px;
}

.background {
    position: fixed;
    z-index: -1;
    opacity: .4;
}

img.title {
    width: 40vw;
    height: auto;
}

/* "GRID" AUTORES */
.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: -10rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.ryane {
    padding-top: 3rem;
}

@media (max-width: 576px) {

    body{
        overflow-x: hidden;
    }
    .container {
        max-width: 540px;
    }

    .container .suba{
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    p.texto{font-size: 20px;}

    h1.titulo{font-size: 30px;}

    .descricao{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .row{
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}