@charset "UTF-8";
/*
    Project     : Personalized links page for Lulu's studio.
    Developer   : @marcelosantosti
    Created on  : Oct 16, 2021, 5:03:08 PM
    Updated on  : Ago 18, 2023, 19:44:00 PM
*/

:root {
    /* Page background color. */
    --lulusDark: Black;
    --fonte-padrao: Arial, Verdana, Helvetica, sans-serif;
}

/* Removing the inner and outer margins of all elements. */
* {
    margin: 0px;
    padding: 0px;
}

body {
    height: 95vh;
    font-family: var(--fonte-padrao);
    background-color: var(--lulusDark);
    background-position: left center;
    background-size: cover;
    background-attachment: fixed;
}

.lulusBackgroundImage {
    background-image: url('../img/page-background/fundo-transp-10opacity_1366x768px.png');
}

@media(max-width: 480px) {
    .lulusBackgroundImage {
        background-image: url('../img/page-background/fundo-v-transp-10opacity-360x640px.png');
    }
}

header > picture
{
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
}

main
{
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

main#container
{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
}

main > div#content
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button image settings. */
figure
{
    margin: 3%;
}

figure > abbr > a > img
{
    display: inline-block;
    width: 32px;
    height: 32px;
}

.imgRadius
{
    border: none;
    border-radius: 30%;
    margin: 2%;
    padding: 30px;
    transition-duration: .8s;
}

.imgRadius:hover
{
    background-color: rgba(89, 127, 124, 0.3);
}

@media(max-height: 480px) {
    /* Button image settings. */
    figure
    {
        margin: 2%;
    }

    figure > abbr > a > img
    {
        display: inline-block;
        width: 32px;
        height: 32px;
    }
}

/* Footer settings. */
footer
{
    padding-top: 85vh;
}

footer > p
{
    font-size: small;
    color: rgba(233, 233, 233, 0.571);
    text-align: center;
    padding: 10px;
}