@charset "utf-8";

@media screen and (max-width: 1144px) {
    video {
        width: 0;
    }

    #introducao {
        background-color: rgb(0, 105, 122);
        padding: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 35em;
        border-bottom-left-radius: 250px;
    }

    #intro {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #intro > h1 {
        font-size: 70px;
        text-align: center;
        text-wrap: balance;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.511);
    }

    #introspan {
        color: rgb(247, 218, 156);
        text-decoration: underline;
    }

    #down-button {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background-color: rgb(0, 80, 93);
        color: white;
        margin-top: 20px;
        border-radius: 10px;
        font-size: 5em;
        width: 1.5em;
        height: .7em;
        -webkit-tap-highlight-color: transparent;
    }

    #down-button:active {
        background-color: rgb(0, 66, 77);
    }

    #down-button > p {
        rotate: 90deg;
    }

    #fotos {
        margin-top: 4em;
    }

    #portrait {
        position: relative;
        overflow: hidden;
        border: 6px solid rgb(35, 98, 121);
        border-radius: 40px 10px;
        height: 24em;
        width: 95%;
        margin: auto;
    }

    #img-list {
        position: absolute;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: fit-content;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-20em, -50%);
        transition: 1.5s;
    }

    .portrait-img {
        width: 40em;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        text-align: center;
    }

    .portrait-img:nth-of-type(2) {
        background-position: center -18.5em;
    }

    #portrait-buttons {
        position: relative;
        display: flex;
        height: 100%;
        justify-content: space-between;
        align-items: center;
        font-size: 50px;
        z-index: 2;
    }

    .portrait-button {
        background-color: rgb(47, 124, 131);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1em;
        color: white;
        border-radius: 15px;
        -webkit-tap-highlight-color: transparent;
    }

    .portrait-button:active {
        background-color: rgb(5, 138, 159);
    }
    
    #previous {
        margin-left: 5px;
    }

    #next {
        margin-right: 5px;
    }

    #info > h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 30px;
        text-align: center;
        margin-top: 10px;
    }

    #info > h4 {
        font-family: "K2D";
        color: rgb(225, 137, 64);
        text-align: center;
    }

    #info > p {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
        text-align: justify;
        margin: auto;
        width: 95%;
    }
}

@media screen and (max-width: 712px) {
    #intro > h1 {
        font-size: 50px;
    }
    
    #down-button {
        font-size: 45px;
    }
}