@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

html{
    font-family: 'Press Start 2P', cursive;
}

a {
    text-decoration: none;
    color: white;
}

.c {
    margin-top: 4rem;
    width: 70%;
    line-height: 2;
}

.content{
    display: flex;
    /* background-color: pink; */
    height: 95vh;
    width: 98vw;
    justify-content: center;
    align-items: center;
}

.child{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rules{
    color: white;
    position: fixed;
    left: 2rem;
    cursor: pointer;
}

.rules:hover{
    color: yellow;
}

button {
    border: none;

    background-color: yellow;
    padding: 0.75rem 3rem;
    border-radius: 5px;
    color: black;
}

button a {
    color: black;
}

button:hover {
    opacity: 0.7;
    transform: scale(1.05);
}