body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    grid-gap: 10px;
    font-size: 1.5rem;
}

container {
    display: flex;
    flex-direction: column;
    max-width: 500;
    grid-gap: 20px;
}

img {
    width: auto;
    object-fit: contain;
}

a {
    font-family: monospace;
    text-transform: uppercase;
    text-decoration: none;
    color: blue;
    font-size: 22px;
    border: 2px solid;
    text-align: center;
    padding: 10px;
}

a:hover {
    background: blue;
    color: white;
}