@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

:root {
    background-color: rgb(29, 26, 26)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 5.4rem;
    color: #fff;
    margin-bottom: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color:#fff;
    margin-bottom: 4rem;
    margin-top: 2rem;
    text-align: center;
}

h3 {
    font-size: 2.7rem;
    color:#fff;
    text-align: center;
    position: relative;
    top: 21rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
}


span {
    font-size: 2.5rem;

}

i {
    font-size: 2.5rem;
}

b {
    font-size: 2.5rem;
}

p {
    font-size: 2.5rem;
}

td {
    font-size: 2.5rem;
}
strong {
    font-size: 2.5rem;
    font-style: bold;
}

ul li {
    font-size: 2.5rem;
    align-items: center;
    list-style-type: none;
}

em {
    font-size: 2.5rem;
}

div {
    font-size: 2.5rem;
}



.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100rem;
    margin: 0 auto;
    padding: 2rem;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.survBtn {
    font-size: 2.4rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(28,26,26);
    background: linear-gradient(90deg,rgb(18,93,255) 0%, rgb(0,102,255) 100%);
    border-radius: 4px;
}

.survBtn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(8, 114, 244, 0.6);
    transition: transform 150ms;
    transform: scale(1.03);
}

.survBtn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.killBtn {
    font-size: 2.4rem;
    padding: 2rem 0;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: rgb(204, 204, 204);
    background: linear-gradient(90deg,rgb(171, 0, 14) 0%, rgb(125, 0, 10) 100%);
    border-radius: 4px;
}

.killBtn:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(201, 0, 16, 0.6);
    transition: transform 150ms;
    transform: scale(1.03);
}

.killBtn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

#highscore-btn {
    background: linear-gradient(90deg, rgba(190,155,27,1) 0%, rgba(194,190,33,1) 32%, rgba(241,255,0,1) 100%);
}

.end-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30rem;
}

input {
    margin-bottom: 1rem;
    margin-top: 20rem;
    width: 40rem;
    padding: 1.5rem;
    font-size: 2.5rem;
    border: none;
    box-shadow: 0 0.1rem 1.4rem 0 rgba(86, 185, 235, 0.5);
}

input::placeholder {
    color: #aaa;
}

#title {
	margin-top: 0 auto;
	margin-bottom: 10rem;
	width: 100%;
    outline: none;
	text-align: center;
}

#username {
    margin-bottom: 3rem;
    width: 100%;
    outline: none;
}

#end-text {
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

#saveScoreBtn {
    border: none;
}

#answerField {
    border: none;
    margin-bottom: 5rem;
    text-align: center;
    align-self: center;
    width: 45rem;
    caret-color: auto;
}

#submitAnswerBtn {
    border: none;
    margin: 0 auto;

}

#icon-container {
    align-items: center;
}

#perkBackground {
    position: absolute;
    left: 43.5vw;
    margin-top: .33vw;
  }

#perkIcon {
    position: absolute;
    left: 43.5vw;
    margin-top: .33vw;
    z-index: 1;
    width: 256px;
    height: auto;
    -webkit-user-drag: none; 
    -khtml-user-drag: none; 
    -moz-user-drag: none; 
    -o-user-drag: none; 
    -user-drag: none; 
}

#muteAudioCheck {
    margin-bottom: 1rem;
    margin-top: 2rem;
    box-shadow: none;
    width: 2rem;
    padding: none;
    align-self: center;
}

#versionLabel {
    margin-bottom: 1rem;
    margin-top: 2rem;
    box-shadow: none;
    width: 10rem;
    padding: none;
    align-self: center;
    text-align: center;
}

label {
    font-size: 1.3rem;
}

#choicesContainer {
    text-align: center;
}

#choice1Container {
    float: left;
    width: 256px;
    position: relative;
    align-content: center;
    color: rgb(28,26,26)
    
}
#choice2Container {
    display: inline-block;
    margin: 0 auto;
    width: 256px;
    position: relative;
    justify-content: center;
    color: rgb(28,26,26)
    
}
#choice3Container {
    float: right;
    width: 256px;
    position: relative;
    color: rgb(28,26,26)
}
.choiceIcon {
    z-index: 1;
    position: absolute;
    left: 0px;
    -webkit-user-drag: none; 
    -khtml-user-drag: none; 
    -moz-user-drag: none; 
    -o-user-drag: none; 
    -user-drag: none; 
    cursor: pointer;
}
#nameChoice1 {
    margin-right: 2rem;
    margin-left: 2rem;
}
#nameChoice2 {
    margin-right: 2rem;
    margin-left: 2rem;
}
#nameChoice3 {
    margin-right: 2rem;
    margin-left: 2rem;
}
#iconChoice1 {
    height: 256px;
    width: auto;
}
#iconChoice2 {
    height: 256px;
    width: auto;
}
#iconChoice3 {
    height: 256px;
    width: auto;
}
  