/* General styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: gradientBackground 10s ease infinite;
    background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4);
    background-size: 800% 800%;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header styles */
header h1 {
    font-size: 3em;
    margin-bottom: 30px;
    color: black;
}

hr {
    margin: 30px 0;
}

/* Button container for flexbox layout */
.button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

/* Button styles */
button {
    background-color: white;
    color: black;
    border: 3px solid black;
    padding: 20px 40px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px; /* Space between image and text */
}

button img {
    width: 60px; /* Adjust size of the image */
    height: 60px;
}

button:hover {
    background-color: #f0f0f0;
}

/* Styling for links wrapping buttons */
a {
    text-decoration: none;
    color: inherit; /* Ensures text color inherits the button style */
}
