*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}
#topList{
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: green;
}
.buttons{
    width: 300px;
    height: 100%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
    background-color: green;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.buttons:hover{
    background-color: rgb(0, 165, 0);
}
#main{
    width: 100%;
    height: 100vh;
    background-image: url("../images/chessBackgroundImage.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
h1{
    font-size: 50px;
    cursor: default;
    color: grey;
}

/* @media (max-width: 768px) {

}
@media (min-width: 769px) and (max-width: 1024px) {

} */