body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
}

.container {
    max-width: 500px;
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 148, 255, 0.1)); /* Gradient background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative; /* Position relative for containing the button */
}

h1 {
    text-align: center;
    color: #007bff; /* Blue text color for heading */
}

.form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ccc; /* Light gray text color */
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 148, 255, 0.1)); /* Gradient background */
    color: #fff; /* White text color */
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3); /* Gradient background */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative; /* Make the button position relative */
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #004b9a); /* Gradient background on hover */
}

button:active {
    transform: scale(1.05); /* Increase size of button when clicked */
    animation: none; /* Disable ring animation on button click */
}


/* Add the animated ring effect */
button.animated-ring-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    animation: pulse-ring 1s infinite;
}

@keyframes pulse-ring {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px; /* Set desired width */
        height: 100px; /* Set desired height */
        opacity: 0;
    }
}

button.animated-ring-button.animate-ring::after {
    animation: none; /* Disable ring animation when button is clicked */
}


p#result {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    color: red; /* Change the color to red */
}


footer {
    text-align: center;
    margin-top: 20px;
}

.social-links {
    margin-bottom: 10px;
    text-align: center;
}

.social-links a {
    margin: 0 3px; /* Reduced margin around icons */
}

.social-links img {
    width: 30px;
    height: 30px;
    animation: pop-up 2s infinite alternate; /* Continuous pop-up and pop-out animation */
}

@keyframes pop-up {
    0% {
        transform: scale(1.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

a {
    color: #00ffbb; /* Light blue color for links */
}

a:hover {
    text-decoration: underline;
}
