body {
    display: flex;
    flex-direction: column; /* Change to column layout */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, rgb(42, 59, 247), #1655f3, #1205c9);
    background-size: 200% 200%;
    animation: gradientAnimation 13s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 50%; }
}

body, h1, h2, p {
    font-family: 'Arial', sans-serif;
    color: #bae7fd; 
}

/* Adjust home-container */
.home-container {
    display: flex;
    flex-grow: 1;  /* Take available space */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Make footer stay at bottom */
footer {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    margin-top: auto; /* This helps ensure it stays at the bottom */
}

h1 {
    margin-bottom: 4rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.btn:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1), 0 12px 16px rgba(0, 0, 0, 0.1);
}

.btn:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-image {
    background-image: url('/static/images/file-W3Wjd2TlVM5AhWB1wbIayWqH.webp');
    background-size: cover;
    background-position: center;
    width: 420px;
    height: 420px;
    border: none; 
    cursor: pointer;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.6); /* Change this to the desired color */
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .btn-image {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .btn-image {
        width: 200px;
        height: 200px;
    }
}
