body {
    margin: 0;
    overflow: scroll;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    text-align: center;
}

.top-right {
    position: absolute;
    top: 10px;
    right: 10px;
}
.signup-button {
    /* Add your styling for the button here */
}

.container {
    position: relative;
    width: 100%;
}

#jpg-container {
    width: 100%;
    height: 150px;
    text-align: center;
}

/* Container for the moving text */
.moving-text-wrapper {
    position: relative;
    width: 100vw; /* Viewport Width */
    overflow: hidden; /* Hide the overflow */
    height: 50px; /* Adjust the height as needed */
    /* Other styles as necessary */
}
.moving-text-container {
    position: absolute;
    /* top: 50%; */
    left: 70%; /* Start from the left edge */
    width: 100%; /* Span the entire width */
    text-align: left; /* Center the text horizontally */
    transform: translateY(-50%);
    white-space: nowrap;
    animation: moveText 10s linear infinite; /* Adjust the duration as needed */
}

.moving-text {
    font-size: 48px;
    display: inline-block; /* Prevent line breaks */
    animation: moveText 10s linear infinite; /* Adjust the duration as needed */
}

@keyframes moveText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

#sexyTitle {
    position: fixed; /* Fixed position */
    top: 0; /* Adjust the margin from the top as needed */
    left: 0;
    right: 0;
    margin: 0px 0px 0px 0px;
    background-color: #fff; /* Background color for contrast */
}

.centered-container {
    position: relative; /* Container needs relative positioning for absolute positioning of child elements */
    text-align: center;
    margin-top: 260px;
    display: flex;
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
}

.gif-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
}

.spiral-gif {
    position: absolute;
    width: 58px; /* Adjust the size of the GIFs as needed */
    height: 58px; /* Adjust the size of the GIFs as needed */
}

/* CSS for the circular button */
.circle-button {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: #0077cc;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: none;
    z-index: 999; /* Ensure the button appears above the GIFs */
}

/* Default styles for desktop */
iframe {
    width: 500px; /* or any other size suitable for desktop */
    height: 152px; /* perfect size for medium one, smaller wastes space */
    border-radius: 12px;
    margin: 115px 0px 0px 0px;
    /* Other styles */
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) { /* Adjust the max-width as needed */
    iframe {
        width: 95%; /* Make iframe take full width of the container */
        /* You can add any other styles specific for mobile devices here */
    }
}
