html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e; /* Dark background color */
    color: #ccc; /* Light text color */
}

.form-container {
    text-align: center;
    padding: 20px;
    background-color: #292929; /* Darker background color */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* Light shadow */
    width: 350px; /* Adjusted width for the form container */
    max-width: 90%; /* Added max-width to ensure responsiveness */
}

.form-container img {
    max-width: 100%; /* Ensure the image scales down to fit the container */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 11px; /* Space between the image and the form elements */
}

.dream-effect {
    animation: wobble 1s infinite alternate;
}

@keyframes wobble {
    0% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(2deg);
    }
}

label {
    font-size: 18px;
    color: #4d94ff; /* Light blue text color */
    margin-bottom: 10px;
    display: block; /* Ensure label is on its own line */
}

#jizzAmount {
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #4d94ff; /* Light blue border color */
    border-radius: 4px;
    font-size: 16px;
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding and border */
    text-align: center; /* Center align the text */
  background-color: #474843;
  color: #fff;
  font-weight:bold;
}

#sendJizzButton, #alreadyWipedButton {
    background-color: #007f3f; /* Dark green background color */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width */
    position: relative;
    left: -2px;
}

#sendJizzButton:hover, #alreadyWipedButton:hover {
    background-color: #005c2e; /* Darker green hover background color */
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.animate {
    animation: pulse 1s infinite;
}
 a {
    color: #fff; /* White link color */
}
      .menu {margin-top:20px;}
