* {
box-sizing: border-box;
background: black;
color: white;
}
body {
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.spil {
height: 90vh;
width: 90vh;
background: #222;
border-radius: 50px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2%;
padding: 2%;
}
.knap {
background: #333;
transition: 0.15s;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
aspect-ratio: 1 / 1;
overflow: hidden;
padding: 15px;
}
.knap:hover {
background: #444;
}
.img {
height: 100%;
width: 100%;
background: none;
}
