body {
    margin: 0;
    margin-top: 30px; /* Add some vertical margin to the top */

    height: 100vh;
    padding: 2em;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(
        to bottom,   /* Specifies the direction: top to bottom */
        #FF00D9,     /* First color (top) */
        #5EF2FF,     /* Second color */
        #001AFF,     /* Third color */
        #9000FF      /* Fourth color (bottom) */
    );
    color: #ffffff; /* Setting a white font color for better visibility against the gradient */

    /* Flexbox styles for centering */
    display: block;
    justify-content: center; /* Horizontally center the content */
    align-items: center;     /* Vertically center the content */
    flex-direction: column;  /* Stack children vertically */
}

/* Styling the buttons */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(234, 57, 224, 1); /* Slightly transparent black */
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transition for button hover */
    display: block;          /* Makes the button a block-level element */
    margin: 10px auto; 
}

button:hover {
    background-color: rgba(229, 242, 95, 1); /* Slightly darker on hover */
}

/* Styling headings */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/* If you have any links on your page */
a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

button.pressed {
    background-color: rgba(229, 242, 95, 1); /* Darkened background for a "pressed" appearance */
    color: #fff; /* White text */
    border: 2px solid #FF00D9; /* Darker border */
}


/* If you have any containers or divs, you might want to space them out */
.container {
    margin-bottom: 20px;
}
#titleImage {
    max-width: 100%;  /* Ensure the image doesn't overflow the viewport width */
    margin: 20px auto; /* Vertical margin of 20px, and auto horizontal margin to center it */
    display: block; 
    }