@import url('https://fonts.cdnfonts.com/css/minecraft-4');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: URL(/assets/lobby.jpg) no-repeat;
    font-family: 'Minecraft' , sans-serif , Arial, Helvetica, sans-serif;
    word-spacing: 10px;

}

.startBtn{
display: flex;
justify-content: center;
align-items: center;
margin-top: 10%;
}

.start{
    padding: 50px 100px;
    border-color: brown;
    border-radius: 30%;
    font-size: 2rem;
    cursor: pointer;
    background-color: transparent;
    color: white;
    transition: transform 0.5s;

}

.start:hover{
    transform: skew(30deg) rotate(10deg);
}

.start:hover{
    background-color: rgba(245, 243, 243 , 0.1);
    border-color: gold;
}

.game-rules{
    font-size: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    font-weight: bold;
    color: silver;

}
ul {
    list-style: none; 
}
  
ul li::before {
    content: "\2023";  
    color: gold; 
    font-weight: bold; 
    display: inline-block;
    width: 1em; 
    margin-left: -1em; 
}


