*, html {
    margin:0;
    padding:0;  
}

.body-complete {
    //height: 100vh;
    width: 100vw;
    background: white;
}

.logo-buttons {
    height: 10%;
    min-width: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(58, 53, 52);
}

.buttons {
    margin-left: 1%;
    display: flex;
    justify-content: flex-end;
}

.logo-div {
    display: flex;
    justify-content: flex-start;
}

.logo-img {
    color: white;
    filter: invert(0.9) grayscale(1) brightness(2);
    margin: 0 0.5rem;
    width: 100%;
    max-width: 100px;
    height: auto;
}

input.button {
    margin-right: 0.5rem;
    background-color: rgb(51, 95, 144);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

input.about-button {
    background-color: rgb(128 103 95);
    border: 2px solid #dedede;
    border-radius: 50%;
    color: #dedede;
    padding: 0px 12px;
    margin: 1% 0;
    cursor: pointer;
}

.qnum-timer {
    height: 5%;
    min-width: 100vh;
    justify-content: space-between;
    align-items: center;
    background: rgb(228, 205, 210);
    display: flex;
}

.qnum {
    display: flex;
    justify-content: flex-start;
}

.section, .question {
    margin-left: 0.5rem;
    color: black;
    font-size: medium;
    font-family: sans-serif;    
}

.question {
    padding-left: 0.5rem;
    border-left: 1px solid;
}

.start-div {
    display: flex;
}

.number-box {
    width: 3.5rem;
    margin-right: 0.5rem;
    border-radius: 5px; 
}

.timer-div {
    display: flex;
    justify-content: flex-end;
}

#timer{
    padding: 5px;
    color: black;
    border-radius: 2px;
    font-weight: bold;
    font-size: larger;
    font-family: sans-serif;
}

img#contentImg {
    max-height: 79vh;
    max-width: 100vw;
    min-width: 95vh;
    align-content: center;
    margin: 1rem;
}

.input-folder{
    margin-right: 0.5rem;
    height: 98%;
    border-radius: 5px;
    align-self: flex-end;
}

/* The Modal (background) */
.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 {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  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}
}

.modal-text {
  font-family: Helvetica;
  font-size: medium;
  padding: 1% 0;
  display: inline-block;
}
