*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
}
.main{
    width: 50%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.chessCom{
    background-image: url("../images/chessComImage.webp");
}
.lichess{
    background-image: url("../images/lichess.png");
    background-position: left;
}
.buttons{
    width: 250px;
    height: 75px;
    position: relative;
    top: 250px;
    background-color: green;
    border: 2px solid green;
    color: white;
    font-size: 30px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.chessComBtn:hover{
    background-color: rgb(0, 165, 0);
    border: 2px solid rgb(0, 165, 0);
}
.lichessBtn{
    background-color: grey;
    border: 2px solid grey;
}
.lichessBtn:hover{
    color: black;
    background-color: rgb(177, 177, 177);
    border: 2px solid rgb(177, 177, 177);
}


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

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

} */