@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Play&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.container {
    text-align: center;
    max-width: 600px;
    padding: auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.user-image {
    max-width: 20%;
    height: auto;
    border-radius: 50%;
}

.username {
    color: whitesmoke;
    font-family: 'Bungee Spice', sans-serif;
}

.coloring a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s;
}

.coloring a:hover {
    color: #e74c3c;
}

@keyframes colorChange {
    0% { color: red; }
    10% { color: orange; }
    20% { color: yellow; }
    30% { color: lime; }
    40% { color: green; }
    50% { color: turquoise; }
    60% { color: blue; }
    70% { color: indigo; }
    80% { color: violet; }
    90% { color: purple; }
    100% { color: magenta; }
}

.coloring {
    animation: colorChange 15s infinite;
}

.time {
    color: #4B0082;
    font-family: 'Anton', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.links {
    font-size: 20px;
    color: ghostwhite;
}

.user-text {
    color: paleturquoise;
    font-family: 'Play', sans-serif;
}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    height: 60px;
    width: 60px;
    border: 3px solid transparent;
    border-top-color: #A04668;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    position: relative;
}

.spinner:before,
.spinner:after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.spinner:before {
    border-top-color: #254E70;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    animation: spin 3s linear infinite;
}

.spinner:after {
    border-top-color: #FFFBFE;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.background-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}
