html {
    font-family: "Atkinson Hyperlegible", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f9f9f9;
}
.emoji {
    margin-right: 0.25rem;
    font-family: "Noto Color Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
}
section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main section:not(:first-of-type) {
    border-top: 1px solid lightgrey;
    padding-top: 1rem;
}

h1, h2, h3 {
    text-align: center;
}

.card-images {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}
figure {
    width: 12rem;
    max-width: 45%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}
figure#all-the-sacrifice {
    display: block;
    width: 100%;
}
figure#all-the-sacrifice i {
    margin-left: 1rem;
    margin-right: 1rem;
}

figcaption {
    text-align: center;
    font-size: 0.9rem;
}

main {
    padding-left: 5rem;
}

.dropzone {
    height: 50px;
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.draggable-dropzone--occupied .item {
    background: lightgrey;
    padding: 0.5rem;
    width: 4rem;
    text-align: center;
    cursor: grab;
    border-radius: 0.5rem;
}
.names {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 20%;
    outline: solid 1px lightgrey;
    border-radius: 0 0.5rem 0.5rem 0;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}
.answer-container {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}
.guess {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    outline: solid 1px lightgrey;
    width: 12rem;
    border-radius: 0.5rem;
}
.answer {
    display: flex;
    align-items: center;
    margin: 0;
    margin-left: 1rem;
}
.placeholder-text {
    color: grey;
    position: absolute;
    user-select: none;
}
.draggable-dropzone--occupied .placeholder-text {
    display: none;
}
.score-text {
    display: flex;
    justify-content: center;
    align-items: center;
}
.score,
.out-of,
.max-score {
    font-size: 2rem;
}
.score-text .score,
.final-score-text .score {
    margin-left: 0.25rem;
}
.score-text .emoji,
.final-score-text .emoji {
    margin-left: 0.5rem;
    font-size: 2rem;
}
.favourite-keywords .ms-6x {
    font-size: 6em;
}
figure.rotating .spacer img,
figure.rotating4 .spacer img {
    position: relative;
    opacity: 0;
    animation: none;
}
section.final-score {
    text-align: center;
}
.final-score ul {
    list-style-type: none;
}
.final-score .final-score-text {
    justify-content: center;
}
button {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px lightgray solid;
    cursor: pointer;
}
button:hover {
    background-color: aliceblue;
}