body {
  /* Background pattern from subtlepatterns.com */
  background-image: url("img/tlo.png");
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: #111;
}

a:link {
  color: #36b03c;
  text-decoration: none;
}
a:visited {
  color: #36b03c;
}
a:active {
  color: #36b03c;
}
a:hover {
  color: #37b93d;
  text-decoration: underline;
}

h1 {
  font-family: "Lobster", cursive;
  font-size: 64px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3px;
  margin-top: 0px;
  margin-bottom: 20px;
}

p {
  text-align: center;
}

.container {
  background-color: gray;
  width: 300px;
  padding: 40px 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  -webkit-box-shadow: 3px 3px 30px 5px rgba(204, 204, 204, 0.9);
  -moz-box-shadow: 3px 3px 30px 5px rgba(204, 204, 204, 0.9);
  box-shadow: 3px 3px 30px 5px rgba(204, 204, 204, 0.9);
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 300px;
  background-color: #efefef;
  color: #666;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px;
  box-sizing: border-box;
  outline: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.9);
  -moz-box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.9);
  box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.9);
  border: 2px solid #a5cda5;
  background-color: #e9f3e9;
  color: #428c42;
}

input[type="submit"] {
  width: 300px;
  background-color: #36b03c;
  font-size: 20px;
  color: white;
  padding: 15px 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 2px;
  outline: none;
}

input[type="submit"]:focus {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(204, 204, 204, 0.9);
  -moz-box-shadow: 0px 0px 15px 5px rgba(204, 204, 204, 0.9);
  box-shadow: 0px 0px 15px 5px rgba(204, 204, 204, 0.9);
}

input[type="submit"]:hover {
  background-color: #37b93d;
}

th,
td {
  border: 1px solid black;
  padding: 5px;
  width: 100%;
}

.context-menu {
  position: absolute;
  text-align: center;
  background: #eee;
  border: solid rgba(255, 26, 104, 1);
  border-radius: 5px;
}

.context-menu ul {
  padding: 0;
  margin: 0;
  min-width: 150 px;
  list-style: none;
}

.context-menu ul li {
  padding: 6px 0;
  border: solid 1px rgba(255, 26, 104, 1);
}

.context-menu ul li:hover {
  background: rgba(255, 26, 104, 0.2);
  cursor: pointer;
}

.myButton {
  box-shadow: inset 0px 1px 3px 0px #91b8b3;
  background: linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
  background-color: #768d87;
  border-radius: 9px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 22px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #2b665e;
}
.myButton:hover {
  background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
  background-color: #6c7c7c;
}
.myButton:active {
  position: relative;
  top: 1px;
}

body,
input {
  font-family: "PT Sans", sans-serif;
  font-size: 1.2rem;

  padding: 0.2rem 1rem;
}
