body {
    background-color: var(--preto-meioescuro);
}

.studio_background {
    width: 100vw;
    height: 100vh;
    background-image: url('../assets/dystoviastudio_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .1;
    position: fixed;
}

.studio_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 10vh 7vw;
}

.studio_content > h1 {
    font-size: 3em;
    margin-bottom: 10vh;
}

.studio_content > p {
    width: 80%;
    font-size: 1.2em;
    text-align: center;
    font-weight: 400;
}

.studio_content > p span {
    display: block;
    margin-top: 3em;
}

.studio_content > h1, p {
    opacity: 1 !important;
    color: var(--white);
    font-weight: 700;
    font-family: 'Poppins';
}

.team_content {
    margin-top: 8em;
}

.team_content > h1 {
    font-size: 3em;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-family: 'Poppins';
    margin-bottom: 2em;
}

.team_box {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 3em;
}

.team_item {
    width: 20%;
}

.team_item > h3 {
    text-align: start;
    font-family: 'Poppins';
    font-weight: 700;
    color: var(--white);
    margin-bottom: .7em;
}

.team_item > p {
    width: 100%;
    margin-top: 1em;
}

.team_item > img {
    width: 100%;
}

@media (max-width: 900px) {
    .studio_content {
        width: 100vw;
        height: 100%;
        padding: 10vh 6vw;
    }
    .studio_content > h1 {
        font-size: 2.5em;
        margin-bottom: 10vh;
    }
    .studio_content > p {
        width: 90%;
    }
    .studio_content > p span {
        margin-top: 3em;
        font-size: .9em;
        font-weight: 400;
    }
    .team_item {
        width: 30%;
    }
}

@media (max-width: 428px) {
    .studio_content {
        padding: 3vh 3vw;
    }
    .team_item {
        width: 80%;
    }
    .team_item > p {
        text-align: center;
    }
}