<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  font-size: 16px;
  box-sizing: border-box;
  overflow-x:hidden;
  overflow-y:hidden;
}

* {
  box-sizing: inherit;
  margin:0;
  padding:0;
}

html, body {
  height: 100%;
}

body{
  font-family: "Press Start 2P";
  background-image: url("/media/BC2.jpg");
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center center;
}

header {
  display: flex;
  width: 100%;
  height: 12%;
  background: rgba(137,193,229,0.5);
  justify-content: space-between;
  margin: 10px 0;
  padding: 0 10px;
}

header h1, p {
  margin: 0;
  align-self: center;
}

header p, header h1{
  display: flex;
  flex-flow: row wrap;
}

#qForm{
  margin-top: 54px;
}

.header p{
  font-size: 11px;
  width: 80%;
}

header h1:hover, p:hover {
  color: white;
}

header h1{
  padding: 0 15px;
}

audio{
  display:none;
}

#questionArea, #answerArea {
  display: flex;
  width: 100%;
  height: 8%;
  justify-content: space-between;
  align-items: center;
}

#questionArea {
  padding: 0 15px;
}

#answerArea {
  height: 30%;
  padding: 0 150px 0 40px;
}

#question, #questionArea, .game {
  color: white;
  font-size: 1.1rem;
}

#qForm input {
  display: flex;
  flex-wrap: wrap;
  align-items: space-around;
  padding-top: 40px;
  margin-top: 20px;
  cursor: pointer;
}

#qForm label {
  position: relative;
  left: 25px;
  top: -15px;
}

input {
  display: inline-block;  
}

.game {
  display: flex;
  align-items: flex-end;
  position: absolute;
  height: 20%;
  width: 100%;
  bottom: 15%;
}

.flag{
  position: absolute;
  right: -3%;
  bottom: -23%;
  width: 180px;
}

.flag img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scaleX(-1);
}

label {
  color: white;
}


#characterContainer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100px;
  left: 0%;
  bottom: -25px;
  transition: all 1s;
  transition-timing-function: ease-in-out;
}
#character {
  width: 100%;
  position: relative;
  left: 25%;
  bottom: 0%;
}


.button {
     width: 200px;
     border: 0;
     background: brown;
     color: white;
     font-weight: 600;
     cursor: pointer;
     border-radius: 5px;
     padding: 10px 5px;
  align-self: flex-end;
}

.lives{
display: flex;
justify-content: flex-end;
margin-right: 150px;
}

.hidden{
  display: none;
}


#dead, #won {
  color: white;
  font-size: 35px;
  
}

.leon {
  width: 25%;
}


@media all and (min-width: 1000px) {
  #character {
    bottom: -15px;
  }
}</pre></body></html>