body{
  font-family: Arial, Helvetica, sans-serif;
  margin: auto;
  padding: 10px;
  width: 90%;
}

h1{
  font-family: Arial, Helvetica, sans-serif;
  border: 0px;
  padding: 8px 20px 8px 8px;
  border-radius: 500px;
  opacity: 0.8;
}

h2{
  font-family: Arial, Helvetica, sans-serif;
  border: 0px;
  margin: 1em 0 1em 0;
  padding: 0.2em 0 0.2em 1.2em;
  border-radius: 500px;
  opacity: 0.8;
  width: 100%;
}

h3{
  font-family: Arial, Helvetica, sans-serif;
  border: 0px;
  margin: 1em 0 1em 0;
  padding: 0.2em 0 0.2em 1.2em;
  border-radius: 500px;
  opacity: 0.8;
  width: 100%;
}

label{
  border: 0px;
  padding: 2em 0 0 0;
}

p, form, div {
  margin: 0 3em;
}

.content2{
   margin:10px;
}

.content-date{
  border: solid #F2E205;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-color: white;

}

a{
  color: #21A2BF;
}

a:hover{ 
  color: #D7F205;
}

a:active{ 
  color: #F2E205;
}


input[type=button], input[type=submit], input[type=reset] {
  font-family: Arial, Helvetica, sans-serif;
  border: 0px;
  margin: 5px 0px;
  padding: 8px 20px 8px 20px;
  border-radius: 500px;
  background-image: linear-gradient(90deg, #0597F2 0%, #21A2BF 50%);
  opacity: 0.8;
  box-sizing: border-box;
}

input,
textarea,
select,
button {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 5px 20px 5px 20px;
  margin: 2px 0px 10px 0px;
  box-sizing: border-box;
  border-radius: 500px;
  border: 0;
}

input[type=color] {
  font-family: Arial, Helvetica, sans-serif;
  width: 100px;
  height: 50px;
  padding: 5px 20px 5px 20px;
  margin: 2px 0px 10px 0px;
  box-sizing: border-box;
  border-radius: 500px;
  border: 0;
}

input[type=color]{ 
  inline-style: groove;
  border-radius: 5px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 0px;
  border: 1px solid #888;
  width: 80%;
  height: 80%;
  position: relative;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* styles for desktop devices */
@media only screen and (min-width: 992px) {
  .content {
    font-size: 1em;
    margin: 0;
    width: 100%;  
    border: 0;
  }
  input[type=button], input[type=submit], input[type=reset] {
    font-size: 1.2em;
  }
  input,
  textarea,
  select,
  button {
    font-size: 1.2em;
  }
  h1 {
    font-size: 2.3em;
  }
  h2 {
    font-size: 2em;
  }
}

/* styles for tablet devices */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content {
    font-size: 1em;
    margin: 0;
    width: 100%;
    border: 0;
  }
  input[type=button], input[type=submit], input[type=reset] {
    font-size: 2em;
  }
  input,
  textarea,
  select,
  button {
    font-size: 2em;
  }
  h1 {
    font-size: 2.3em;
  }
  h2 {
    font-size: 2em;
  }
}

/* styles for mobile devices */
@media only screen and (max-width: 767px) {
  .content {
    font-size: 2em;
    margin: 0;
    width: 100%;
    border: 0;
  }
  input[type=button], input[type=submit], input[type=reset] {
    font-size: 2em;
  }
  
  input,
  textarea,
  select,
  button {
    font-size: 2em;
  }
  h1 {
    font-size: 2.3em;
  }
  h2 {
    font-size: 2em;
  }
}