@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');
body {
    margin: 0;
    background-color: #737797;
}
audio {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 5px;
}
#homeScreen {
    text-align: center;
    background-image: url(../assets/bg-img.jpeg);
    width: 100%;
    height: 100vh;
    background-size: cover;
}
#homeScreen div {
   font-family: 'Kiwi Maru', serif;
   right: 9%;
   top: 18%;
   position: absolute;
   line-height: 350%;
}
#homeScreen div h1{
    font-size: 55px;
    margin-bottom: 25%;
    color: #ffdf91;
    text-shadow: 0px 0px 8px rgba(255,223,145,0.68);
}
#homeScreen div h3 {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: lighter;
}
#gameScreen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.gameArea {
    height: 409px;
    width: 850px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;;
    padding: 1%;
    margin: 0% auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.089);
}
.puzzle {
    height: 410px;
    width: 410px;
}
.pieces {
    height: 410px;
    width: 410px;
    position: relative;
    line-height: 410px;
    font-size: 30px;
    font-weight: bolder;
    font-family: 'Kiwi Maru', serif;
    text-align: center;
}
button {
    font-size: 20px;
    font-family: 'Kiwi Maru', serif;
    font-weight: bold;
    border-radius: 15px;
    border: none;
    background-color: #ffdf91;
    box-shadow: 0px 0px 5px 1px rgba(255, 224, 145, 0.596);
    height:50px;
    padding-left: 10px;
    padding-right: 10px;
}
#startGame {
    box-shadow: 0px 0px 17px 7px rgba(255,223,145,0.68);
    width: 250px;
    border-radius: 25px;
}
button:hover {
    cursor: pointer;
}
.piece {
    width: 100px;
    height: 100px; 
    border: 1px solid rgb(255, 255, 255);
    float: left;
    background-repeat: no-repeat;
}
.buttons{
    display: flex;
    width: 60%; 
}
.completedPuzzle {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 1px rgba(255, 224, 145, 0.596);
    margin-left: 10px;
    transition: transform .2s;
    background-position: center;
    background-size: cover;
}
.completedPuzzle:hover {
    transform: scale(4);
    border-radius: 2px;
}
.highlight {
    background-color: #ffe091;
}