* {
  margin: 0;
  box-sizing: border-box;
}

body {
    font-family: sans-serif;
    display: flex;
    height: 100vh;
    background-color: #2e3440;
    color: white;
}

main {
padding: 1%;
margin: auto;
width: 85%;
max-width: 700px;
height: 85%;
max-height: 900px;
text-align: center;
background-color: #4c566a;
border-radius: 1em;
}

::backdrop {
    background-color: black;
    opacity: 0.4;
}

h1 {
    padding-top: 1vh;
    padding-bottom: 1vh;
}

#resultsModal {
    padding: 1%;
    margin: auto;
    width: 75%;
    max-width: 650px;
    height: 75%;
    max-height: 850px;
    text-align: center;
    background-color: #4c566a;
    border-radius: 1em;
    color: white;
}

#closeModal {
    position: absolute;
    top: +10px;
    right: +10px;
}

#submit {
    margin-top: 10px;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
}

#partyLabel, #party {
    font-size: 1.25em;
}

span {
    font-size: 1.25em;
    letter-spacing: 0;
}

#resultsMessage {
    font-weight: bold;
    font-size: 1.875em;
    padding-top: 1em;
    padding-bottom: 0.5em;
}

#resultsEmoji {
    font-size: 3em;
}

#shareButton {
    font-size: 2em;
}

#portrait {
    display: block;
    margin: auto;
    height: 70%;
    max-width: 90%;
    object-fit: contain;
}

form {
    display: inline-block;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 1vh;
}

#guessesDiv {
    white-space: nowrap;
    display: inline;
}

a {
    color: white;
}

#copied {
    display: none;
}