body {
    display: flex;
    justify-content: center;
    background-image: url('images/bg.png');
    /* background: linear-gradient(to top, #ff7e5f, #feb47b);
    background-repeat: no-repeat; */
}
img {
    width: 10%;
}
.logo {
    display: flex;
    justify-content: center;
    /* padding-top: 20px; Add padding to the top of the logo container */
}

.logo img {
    width: 15vw;
    /* padding-top: 10px; Padding inside the logo image */
}

.social-link {
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255); /* Default text color */
    border: 2px solid white;
    border-radius: 5px;
    margin: 20px 30px;
    padding: 10px;
}
.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Light background on hover */
    border-color: rgba(255, 255, 255, 0.8); /* Slightly lighter border on hover */
    transform: scale(1.05); /* Slightly scales up the element */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.container {
    position: relative; /* Ensure that the container has a positioning context */
    background: rgba(255, 255, 255, 0.067); /* Semi-transparent background color */
    border-radius: 10px; /* Optional: Adds rounded corners */
    backdrop-filter: blur(10px); /* Apply the blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    padding: 20px; /* Optional: Adds padding inside the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds shadow for better visual separation */
}
.container {
    /* background-color: black; */
    color: white;
    width: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.564); /* Add border to container */
}
.links a {
    text-decoration: none;
}

.links {
    padding-top: 40px;
}

.container a:hover {
    color: rgb(255, 191, 0);
}

.social-icon {
    margin-right: 10px; /* Adjust this value to control the space between the icon and text */
}

@media (max-width: 600px) {
    body {
        width: 100%;
    }
    .logo {
        padding-top: 30px; /* Adjust padding from the top for the logo container */
    }
    .logo img {
        width: 50vw; /* Increase logo size on smaller screens */
    }
    .container {
        background-color: transparent; /* Set background color to transparent */
        color: rgb(255, 255, 255); /* Set text color to black */
    }
    a {
        color: rgb(255, 255, 255) !important; /* Ensure text color inside links is black */
    }
    .powered-by h2 {
        color: rgb(255, 255, 255);
        font-size: 10px;
        padding-top: 20px;
    }
    .powered-by {
        display: flex;
        flex-direction: column; /* Ensure children stack vertically */
        justify-content: flex-end; /* Pushes children to the bottom */
        align-items: center; /* Centers children horizontally (optional) */
        font-size: 10px;
        height: 100%; /* Make sure the container stretches to fill available space */
    }

    .powered-by h2 {
        color: rgb(255, 255, 255);
        font-size: 10px;
        margin-top: auto; /* Pushes the h2 to the bottom of the container */
    }
}
.social-icon{
    margin-right: 10px;
}

.powered-by {
    display: flex;
    flex-direction: column; /* Ensure children stack vertically */
    justify-content: flex-end; /* Pushes children to the bottom */
    align-items: center; /* Centers children horizontally (optional) */
    font-size: 10px;
    height: 100%; /* Make sure the container stretches to fill available space */
    text-decoration: none;
}

.powered-by a {
    color: rgb(255, 255, 255);
    font-size: 10px;
    margin-top: auto; /* Pushes the h2 to the bottom of the container */
    text-decoration: none;
}
/* Define the horizontal shuffle effect */
@keyframes shuffle-horizontal {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(10px); }
    50% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
  }
  
  /* Apply the animation to the shuffle-button */
  .shuffle-button {
    display: inline-block;
    animation: shuffle-horizontal 0.5s ease-in-out infinite;
    animation-play-state: paused;
  }
  
  
  