* {
    color: white;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
    text-align: center;
    align-content: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url(imgs/IMG_0179.jpeg);
    backdrop-filter: blur(10pt);
    background-size: cover;
    background-position: center;
}



@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo {
    width: 60pt;
    height: 60pt;
    object-fit: contain;
    margin-bottom: 10pt;
    border-radius: 100cap;
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.3);

}

h1 {
    font-size: 24pt;
    margin: 0;
    text-shadow:
        0 0 20px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 20pt;
    width: 100%;
}

.sociais-midia {
    margin-top: 10pt;
    height: 28pt;
    width: 200pt;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sociais-midia a {
    width: 24pt;
    height: 24pt;
    padding: 0;
    background-color: transparent;
    border: none;
}

svg {
    transition: all 0.2s ease-in-out;
    fill: whitesmoke;

}

.sociais-midia a:hover svg {
    scale: 1.1;
    fill: white;
    cursor: pointer;
}


/* From Uiverse.io by reglobby */
.links a {
    position: relative;
    padding: 10px 20px;
    border-radius: 3cap;
    border: 1px solid rgb(61, 106, 255);
    font-size: 12pt;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    height: 24pt;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin: 5pt;
    text-decoration: none;
}

.links div {
    margin: 10pt;
    background: linear-gradient(transparent, white, transparent);
    height: 1pt;
    width: auto;
}

.links a:hover {
    background: rgb(61, 106, 255);
    box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.links a:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

.links a::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #70aeff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}

.links a:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}

/* From Uiverse.io by paesjr */
.e-card {
    background: transparent;
    position: relative;
    border-radius: 16pt;
    overflow: hidden;
    max-width: 400pt;
    width: auto;
    margin: 50px auto;
    padding: 20pt;
    display: flex;
    flex-direction: column;
    align-items: center;

}