body {
  margin: 0;
}

h1 {
    color: white;
    padding: 15px 32px;
    font-size: 100px;
    font-family: Arial, sans-serif;
}

.header {
  width: 100%;
  height: 50px;
  background-color: #4CAF50;
  text-align: right;
}

.header-button {
  color: white;
  height: 50px;
  width: 60px;
  padding:10px;
  margin: 0;
  background-color: #4CAF30;
  border: none;
  font-family: Arial, sans-serif;
}

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  border-radius: 10px;
  color: white;
  padding: 15px 32px;
  width: 60%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 100px;
  margin-bottom: 35px;
  font-family: Arial, sans-serif;
}

.little_button {
  background-color: #4CAF50; /* Green */
  border: none;
  border-radius: 5px;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
}

.date {
  width: 20%;
  padding: 13px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.button:hover,
.little_button:hover {
    background-color: #4CAF30;
}

.center {
  text-align: center;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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 */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-body {
    padding: 2px 16px;
    background-color: #242526;
    font-family: Arial, sans-serif;
    color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

.container {
  padding-top: 200px;
  display:flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.login {
  text-align: center;
  margin: 0;
  padding: 20px;
  border: #373737;
  background: #373737;
  border-radius: 10px;
  width: 400px;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 30px;
}

input[type=text], input[type=password] {
  width: 90%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  font-size: 25px;
}

#myProgress {
  width: 100%;
  background-color: #242526;
}

#myBar {
  width: 1%;
  height: 5px;
  background-color: #4CAF50;
}

.selectpicker {
    padding: 4px 5px;
    margin: 10px;
}