body {
        margin: 0;
        padding: 0;
        background: url('background.png') no-repeat center center fixed;
        background-size: cover;
        font-family: Arial, sans-serif;
        color: #fff;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }
    h1 {
        text-align: center;
        margin-top: 2.5em;
        font-size: 2.5em;
    }
    .center {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .buttons {
        display: flex;
        gap: 2em;
    }
    .button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 175px;
        height: 125px;
        border: 3px solid orange;
        border-radius: 1em;
        background-color: #303030;
        color: yellow;
        text-decoration: none;
        padding: 1em;
        box-sizing: border-box;
    }
    .button:hover {
        border: 4px solid rgb(0, 255, 0);
        opacity: 0.9;
    }
    .gear {
        font-size: 48px;
        color: white;
        text-decoration: none;
    }
    .label {
        color: yellow;
        font-size: 1.2em;
        text-align: center;
        text-decoration: none;
    }
    a {
        text-decoration: none;
    }