@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');

body {
    background-color: black;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

body#start {
    background-image: url(./images/start.jpeg);
}

.container {
    margin-top: 10%;
    width: 400px;
    height: 500px;
    background-color: rgba(128, 128, 128, 0.474);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#playerScore {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#playerScore input {
    background-color: black;
    color: lime;
}
#screen {
    font-family: 'Oswald', sans-serif;
    margin-top: 5%;
    display: flex;
    font-size:30pt;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#choices {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

button {
    background-color: black;
    color: red;
    width: 100px;
    border: 1px silver solid;
    border-radius: 5px;
    box-shadow: 3px 3px grey, -.2em 0 .4em red
}

a {
    text-decoration: none;
    color: red;
}

#selected {
    text-shadow: 2px 2px purple;
    color: white;
}

audio, source {
    display: hidden;
}

#instructions-page {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('./images//instructionsBG.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#instructions {
    padding: 20px;
    margin: 5%;
    width: 75%;
    color: white;
    text-shadow: 2px 2px black;
    background-color: rgba(255, 255, 255, 0.176);
}

#instructions p {
    font-size: 16pt;
}

#instructions a {
    color: red;
    text-shadow: 2px 2px black;
}

#high-scores {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    font-size: 20pt;
    text-align: center;
    text-align-last: left;
}

#scores {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    height: 500px;
    width: 90%;
}

#scores p {
    display: flex;
    width: 200px;
    justify-content: space-between;
}

.high-scores {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 800px;
    /* margin-top: 5%; */
    width: 50%;
}