:root {
    height: 100%;
    width: 100%;

    /* Colors */
    --primary-dark: rgba(0, 29, 74, 1);
    --white: #fff;
    --white-transparent-2: rgba(255, 255, 255, 0.2);
    --white-transparent-4: rgba(255, 255, 255, 0.4);
    --title: 32px;
    --description: 18px;
    --about: 14px;

    /* Assets */

    --background-img-1: url("public/background1.png");
    --background-img-2: url("public/background3.png");

    /* Animation */
    --animation-default: 200ms;
}

body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-family: 'PT Sans', sans-serif;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-filter: blur(20px);
    /* Firefox */
    -o-filter: blur(20px);
    /* Opera */
    -ms-filter: blur(20px);
    /* Microsoft Edge */
    animation: backgroundTransition 15s infinite;
}



.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    perspective: 1000px;
    border: 10px solid var(--white-transparent-2);
}

.avatar:hover {
    transition: transform 0.5s ease;
    cursor: pointer;
    transform: scaleX(-1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.username {
    font-weight: bold;
    font-size: var(--title);
    margin-top: 10px;
}

.user-title {
    font-size: var(--description);
    margin-top: 10px;

}

.user-description {
    font-size: var(--about);
    line-height: 1.7em;
    text-align: center;
}

.dot-text {
    position: relative;
    display: inline-block;

}

.dot-text::before,
.dot-text::after {
    content: '\00B7';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: var(--white);
}

.dot-text::before {
    left: -0.7em;
}

.dot-text::after {
    right: -0.7em;
}

.card-tile {
    margin-top: 15px;
    height: 35px;
    padding: 5px 20px;
    width: 250px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    align-items: center;
    display: flex;
    background-color: var(--white-transparent-2);
    justify-content: space-between;
}

.card-tile i {
    margin-right: 20px;
    font-size: 22px;
}

.card-tile:hover {
    background-color: var(--white-transparent-4);
    transition: var(--animation-default);
    cursor: pointer;
}

.link {
    display: flex;
    margin-top: 30px;
    color: var(--white);
    text-decoration: none;
}

.link i {
    margin-right: 10px;
    margin-top: 2px;
    display: flex;
    flex-direction: row;
}

.link:hover {
    transition: var(--animation-default);
    text-decoration: underline;
    cursor: pointer;
}

@keyframes backgroundTransition {

    0%,
    100% {
        background-image: var(--background-img-1);
    }

    50% {
        background-image: var(--background-img-2);
    }
}