@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-color: #161515; */
    background-color: #000;
    color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(./media/image/code_bg.gif); /* Path to your GIF file */
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-attachment: fixed; /* Fix the background in place during scroll */
}
.step {
    text-align: center;
    width: 80%;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1); */
    /* background-color: #000; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner {
    /* background-color: #000; */
}
.floating-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#user_picture {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #0056b3;
}
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hidden {
    display: none;
    transform: translateX(100%);
}
.paragraph1 {
    margin-top: 0;
    margin-bottom: 0;
    white-space: pre-line;
}
#user_picture {
    margin-top: 30px;
    margin-bottom: 30px;
}
.video {
    height: auto;
    width: 560px;
    max-width: 100%;
    min-width: 50%;
}
.img_404 {
    filter: invert(100%);
    height: auto;
    max-width: 100%;
    width: 500px;
    min-width: 50%;
}
.img_403 {
    height: auto;
    max-width: 100%;
    width: 500px;
    min-width: 50%;
}
.loader {
    height: 50px;
    aspect-ratio: 2;
    border: 10px solid #000;
    box-sizing: border-box;
    background: 
      radial-gradient(farthest-side,#fff 98%,#0000) left/20px 20px,
      radial-gradient(farthest-side,#fff 98%,#0000) left/20px 20px,
      radial-gradient(farthest-side,#fff 98%,#0000) center/20px 20px,
      radial-gradient(farthest-side,#fff 98%,#0000) right/20px 20px,
      #000;
    background-repeat: no-repeat;
    filter: blur(4px) contrast(10);
    animation: l14 1s infinite;
}
@keyframes l14 {
    100%  {background-position:right,left,center,right}
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
}

/* Base styles for animated elements */
.easy_in,
.easy_out {
    animation-duration: 1s;
    animation-iteration-count: 1;
}

/* Animation keyframes from right to left */
@keyframes easyIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0%);
    }
}

/* Animation for scrolling from right to left */
.easy_in {
    animation-name: easyIn;
}

/* Animation keyframes from right to left */
@keyframes easyOut {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Animation for scrolling from right to left */
.easy_out {
    animation-name: easyOut;
    transform: translateX(-100%);
}

