.center {
    margin: auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding: 50px;
    height: 100px;
    justify-content: space-evenly;
}
body {
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
}
a {
    display: inline-block;
    border: 1px;
    border-radius: 4px;
    border-style: outset;
    padding: 1px;
    padding-inline: 6px;
    text-align: center;
    box-sizing: border-box;
    background-color: buttonface;
    border-color: grey;
    border-image: initial;
    color: inherit;
    text-decoration: inherit;
    font-size: 16px;
}
a:hover {
    background-color: rgb(210,210,210);
    border-color: rgb(108,108,108);
}