* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

html, body {
  min-width: 1100px;
  min-height: 800px;
  margin: 0;
  padding: 0;
}

body {
    background-image: url("../assets/background.jpg");
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
  
    font-family: sans-serif;
    font-weight:bold;
    font-size: 10px;

    min-width: 80%;
    min-height: 80%;
  }

p {
  font-size: 15px;
  padding-top: 40px;
  padding-left: 40px;
  font-weight:bold;
  font-style:italic;
}

.container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(9, auto);
    padding-right: 100px;
    padding-left: 100px;
    padding-bottom: 100px;
    padding-top: 0px;
    justify-content: center;

    background-image: "assets/scissors.png";
}

.hole {
    background: #ffffff;
    width: 20px;
    height: 20px;
    margin: 40px;
        
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
       
    border-radius: 50%;
    box-shadow: 0 2px 10px #67676780;
    transition: background .3s ease; 
}

.hole:hover {
    background: #eeff00;
    cursor: pointer;
}

a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color:black;
}