@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');

body {
    font-family: "Share Tech", sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 70px;
    border: 3px solid black;
    border-radius: 25px;
    color: black;
}

.arrows {
    background-image: url(../images/landing.png);
    background-size: 700px;
    background-repeat: no-repeat;
    background-position: 49% -20%;
}

.landingPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 400px;
}

.landingPage section {
    width: 50%;
    text-align: center;
}

.landingPage a {
    text-decoration: none;
    color: black;
    padding: 10px 40px;
    font-size: 30px;
    border: 3px solid black;
    border-radius: 25px;
}

.landingPage a:hover {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.49);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

main h2 {
    text-align: center;
}

.gameDisplay {
    display: flex;
    justify-content: center;
    align-items: center;
}

#head, #body, #leftArm, #rightArm, #leftLeg, #rightLeg {
    display: none;
  }

.keyboardDisplay {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

#keyboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 60%;
}

#keyboard button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-family: "Share Tech", sans-serif;
    margin: 10px;
    border: 3px solid black;
    border-radius: 15px;
    background-color: white;
    height: 50px;
    width: 50px;
}

#keyboard button:hover {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.49);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

#modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#modalBox {
    background: white;
    padding: 40px;
    border: 3px solid black;
    border-radius: 20px;
    text-align: center;
    min-width: 300px;
}

#modalMessage {
    position: relative;
    bottom: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
}

#modalButtons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#playAgainBtn {
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 10px;
    background: limegreen;
    color: white;
}

#noThanksBtn {
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 10px;
    background: crimson;
    color: white;

}

#playAgainBtn:hover, #noThanksBtn:hover {
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
    color: black;
    background-color: rgba(211, 211, 211, 0.49);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none !important;
}

@media screen and (max-width: 650px) {
    .arrows {
        background-position: 53% -20%;
    }

    svg {
        height: 300px;
        width: 200px;
    }

    #keyboard {
        width: 80%;
    }

    #keyboard button {
        height: 40px;
        width: 40px;
    }
}