/* SECTION ONE */
section{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1E1E1E;
    gap: 20px;
    cursor: default;
}

section img{
    max-width: 70%;
    height: auto;
}

section h3{
    color: white;
    font-weight: 400;
}

section h4{
    color: rgb(143, 143, 143);
    font-weight: 400;
}
section h4 a{
    color: rgb(143, 143, 143);
    font-weight: 400;
}

.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer h4{
    font-size: 11px;
    color: rgb(143, 143, 143);
    font-weight: 300;
}






















/* ------------ DISPOSITIVOS MÓVEIS ---------------------------------------------------------------------------------------------------------------------------------------------- */


/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (max-width: 600px) {
    section h3{
        font-size: 14px;
    }

    section h4{
        color: rgb(143, 143, 143);
        font-weight: 400;
    }
    section h4 a{
        color: rgb(143, 143, 143);
        font-weight: 400;
    }

    .footer{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer h4{
        font-size: 11px;
        color: rgb(143, 143, 143);
        font-weight: 300;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (max-width: 768px) {
    section h3{
        font-size: 14px;
    }

    section h4{
        font-size: 11px;
        text-align: center;
    }
    section h4 a{
        font-size: 12px;
    }

    .footer{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer h4{
        font-size: 9px;
        text-align: center;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media screen and (max-width: 1200px) {
    
}