/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add some basic styling to the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #007acc;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Style the main content */
main {
    padding: 20px;
}

/* Style the website title */
h1 {
    font-size: 24px;
}

/* Style the buttons */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007acc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

/* Mobile-friendly CSS */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 18px;
    }

    .button {
        font-size: 14px;
    }
}