body {
    background-color: #333;
    color: #ddd;
    font-size: 10px;
}

h1 {
    text-align: center;
    font-size: 3rem;
}

.gameHolder {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-size: 1.6rem;
}

a {
    color: cornflowerblue;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
}

a:hover {
    color: #fff;
    font-size: 1.8rem;
    transition: all ease-in-out 0.2s;
}