body{
	background:rgb(57, 48, 42);
	color:white;
	text-align:center;
	font-family:Arial;
}

h1,h2{
	color:rgb(229, 72, 35);
	line-height: 20px;
    margin-top: 0; 
}
.credits{
	position:fixed;
	bottom:5%;
	right:5%;
}

a[id=download]{
    background: rgb(121, 38, 18);
    border:rgb(229, 72, 35) 3px solid;
    padding:8px;
    text-decoration: none;
}

a[id=download]:hover{
    border:rgb(229, 72, 35) 3px solid;
    background:rgb(229, 72, 35);
    color:white;

}

.logo{
	margin:auto;
}
.fileButton {
  color: transparent;
  border: 3px solid rgb(229, 72, 35);
  width:140px;
  height:80px;
  margin: 10px;
  cursor:hand;
      position: absolute;
    top: 10;
    left: 21;
}
.fileButton::-webkit-file-upload-button {
  visibility: hidden;
}

.fileButtonBG{
	width: 200px;
    height: 100px;
    display: block;
    position: relative;
    line-height: 100px;
	margin:auto;
}
.fileButton:hover{
    border:10px solid rgb(229, 72, 35);
}

input[type="text"]{
	border: 3px solid rgb(229, 72, 35);
	background: rgb(57, 48, 42);
	color:white;
    padding: 10px;
    font-size: 1.5em;
    margin: 10px;

}

input[type="submit"]{
	border: 3px solid rgb(229, 72, 35);
	background: rgb(57, 48, 42);
	color:white;
    padding: 10px;
    font-size: 1.5em;
    margin: 10px;
    cursor:hand;
}
input[type="submit"]:hover{
    background:rgb(229, 72, 35);
}
/* Customize the label (the container) */
.container {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 20px;
  line-height:20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgb(57, 48, 42);
  border: rgb(229, 72, 35) 3px solid;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: rgb(229, 72, 35);
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: rgb(229, 72, 35);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid rgb(57, 48, 42);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

table{
    border: 1px solid rgb(229, 72, 35);
    margin:auto;
    width:50%;
    text-align: center;
}

table tr{
    border-spacing: 0px;
}

table th{
    background: rgb(229, 72, 35);
    color:white;
    border-spacing: 0px;
}

table td{
    border-spacing: 0px;

}

.incorrect {
    background: rgb(229, 72, 35);
    font-size: 3em;
    width: 75%;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top:50%;
}

.incorrect {
    background: rgb(229, 72, 35);
    font-size: 3em;
    width: 75%;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top:50%;
}

a{
    color:white;
}
a:hover{
    color:#cccccc;
}

:root {
    --line-width: 6px;
    --arrow-height:80px;
  }

.arrow_container_css{
    width:500px;
    background:rgb(57, 48, 42);
    height:var(--arrow-height);
    display:flex;
    margin:auto;
    margin-top:20px;
    margin-bottom:40px;
    align-content: center;
    position: relative;
}

.arrow_container_css .arrow_line{
    width:100%;
    height:var(--line-width);
    background:rgb(229, 72, 35);
    display:block;
    margin:auto;
    line-height: 100px;
    border-radius: 12px;
    
}

.arrow_container_css .arrow_left{
    width:var(--arrow-height);
    height:var(--arrow-height);
    float:left;
    display: flex;
    position: absolute;
    align-content: center;
    
    background:rgb(57, 48, 42);
}
.arrow_container_css .arrow_right{
    width:var(--arrow-height);
    height:var(--arrow-height);
    float:right;
    display: flex;
    position: absolute;
    right:0;
}

.arrow_container_css .arrow_left_top{
    width:100%;
    background:rgb(229, 72, 35);
    height:var(--line-width);
    transform:rotate(45deg);
    transform-origin: 100% 0px;
    position: absolute;
    top:calc(var(--arrow-height)/2);
    right:-4px;
    border-radius: 12px;
}

.arrow_container_css .arrow_left_bottom{
    width:100%;
    background:rgb(229, 72, 35);
    height:var(--line-width);
    transform:rotate(-45deg);
    transform-origin: 100% 8px;
    position: absolute;
    bottom:calc(var(--arrow-height)/2);
    right:-5px;
    border-radius: 12px;
}

.arrow_container_css .arrow_right_top{
    width:100%;
    background:rgb(229, 72, 35);
    height:var(--line-width);
    transform:rotate(45deg);
    transform-origin: 100% 0px;
    position: absolute;
    top:calc(var(--arrow-height)/2);
    right:-2px;
    border-radius: 12px;
}

.arrow_container_css .arrow_right_bottom{
    width:100%;
    background:rgb(229, 72, 35);
    height:var(--line-width);
    transform:rotate(-45deg);
    transform-origin: 100% 8px;
    position: absolute;
    bottom:calc(var(--arrow-height)/2);
    right:-3px;
    border-radius: 12px;
}

.arrow_container_css .arrow_middle{
    width:var(--arrow-height);
    height:var(--arrow-height);
    display: flex;
    position: absolute;
    bottom:0;
    left:33%;
}

.arrow_container_css .arrow_middle_top{
    width:100%;
    background:rgb(229, 72, 35);
    height:var(--line-width);
    transform:rotate(135deg);
    transform-origin: 100% 2px;
    position: absolute;
    top:calc(var(--arrow-height)/2);
    right:-2px;
    border-radius: 12px;
}

.arrow_container_css .arrow_middle_bottom{
    
    width:100%;
    background:rgb(229, 72, 35);
    height:var(--line-width);
    transform:rotate(-135deg);
    transform-origin: 100% 5px;
    position: absolute;
    bottom:calc(var(--arrow-height)/2);
    right:-3px;
    border-radius: 12px;
}