.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Removes underline from links */
}
.button:hover {
    background-color: #0056b3;
}

.border {
    border: 1px solid black;
    background-color: lightcyan;
    padding: 10px;
    margin-top: 10px;
}

body {
    background-image: url('rf-logo.png');
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    border-bottom: 1px solid black;
    text-align: center;
    width: 80%;
}

.container {
    display: flex;
    justify-content: center; /* Horizontally center the items */
    margin: 2em 20%; /* 20% margins on both sides */
}

.central-column {
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1em;
    border: 2px solid black;
    border-radius: 15px;
}