* {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: black;
}
body{
    background-color: #cfcfcf;
}
h1, h2, h3{
    border: 3px solid white;
    border-radius: 5px;
    margin: 0;
    padding: 15px;
    background-color: rgb(150,150,150);
    text-align: center;
    font-size: 135%;
    color: white;
}

.bigbutton{
    font-size: 125%;
}
select, label{
    font-size: 125%;
}
.header{
    border: 3px solid white;
    border-radius: 5px;
    margin: 0;
    padding: 15px;
    background-color: rgb(150,150,150);
    text-align: center;
    font-size: 135%;
    color: white;
}

.padding{
    height: 100%;
    color: white;
    margin-bottom:100px;
}

.login{
    border: 3px solid green;
    border-radius:10px;
    margin: 0;
    padding: 25px;
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: auto;
}
.radiolist{
    background-color: white;
    text-align: left;
    border: 2px solid black;
    display: inline-block;
    margin: 1em;
    font-size: 150%;
    padding: 25px;
}
.center{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}
.task{
    background-color: white;
    text-align: center;
    border: 2px solid black;
    display: inline-block;
    margin: 1em;
    font-size: 125%;
    padding: 25px;
    border-radius: 2px;    
}
.mission{
    background-color: #4787FF;
    text-align: center;
    border: 2px solid black;
    display: block;
    margin: 1em;
    padding: 5px;
    border-radius: 5px;
}
.Success{
    background-color: lightgreen;
}
.Failed{
    background-color: tomato;
}
.player{
    font-size: 125%;
    padding: 10px;
    border: 1px solid black;
    margin: 1em;
}
.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    font-size: 150%;
    padding: 10px;
}

#self{
    font-weight: bold;
}
.gotgotSuccess{
    background-color: tomato;
    text-align: center;
    border: 2px solid white;
    display: block;
    margin: 1em;
    padding: 5px;
    color: white;
}
.gotgotFailed{
    background-color: lightgreen;
    text-align: center;
    border: 2px solid black;
    display: block;
    margin: 1em;
    padding: 5px;
}
.debugmessage{
    color: rgb(255,50,50);
    background-color: rgb(150,150,150);
    border: 2px solid black;
    padding: 10px;
    position: fixed;
    bottom: 0;
    height: 10%;
    border-radius:10px;
    overflow: scroll;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 4px solid #888;
    width: 80%;
  }
  
/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }