body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.button {
    display: inline-block; 
    background-color: #f25e24; 
    color: white; 
    padding: 10px 20px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold;
}

.button:hover {
    background-color:bisque;
}

.center-button {
    display: grid;
    place-items: center; /* Centers both horizontally and vertically */
    height: 100px; /* Adjust the height as needed */
  }

/* Style for the right column (text) */
.interactive-text {
    /*flex: 1;  Takes up the other half of the width */
    padding: 20px;
    color: #2c3691;
    background-color: #F5C98C; /* Optional background color for the text */
    border-radius: 10px;
    border: 4px solid #978fa0;
}

.responsive-banner {
    max-width: 100%;
    height: auto;
}

.link-color{
    color:aqua;
}
