body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 20px;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f9f9f9;
    text-align: center;
}

h1 {
    color: rgb(255, 106, 130);
}

#chub {
    display: inline-block;
    margin-right: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#chub:hover {
    background-color: #45a049;
}

#forum {
    display: inline-block;
    margin-right: 20px;
    padding: 10px 20px;
    background-color: #008CBA;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#forum:hover {
    background-color: #007bb5;
}

#referencePage {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff964f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#referencePage:hover {
    background-color: #e68345;
}