
body {
  font-family: Roboto, Verdana, Tahoma, sans-serif;
  background-color: #f7f7f7;
  color: #444422;

  margin: 0;
  padding: 0;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  min-width: 100vw;
  min-height: 100vh;
}

.top-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.left-column {
  float: left;
  flex-basis: 15rem;
  flex-shrink: 1;
  margin: 2rem 0 0 3rem;
}

.right-column {
  padding-right: 10rem;
  float: right;
  flex-basis: 85rem;
  flex-shrink: 1;
  margin: 1rem 0 0 3rem;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3vh;
  margin: 0;
  overflow: hidden;
}

.footer a {
  color: #f2f2f2;
  text-decoration: none;
}

.footer a:hover {
  color: #bfbfbf;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #f2f2f2;
  background-color: #404040;
  margin: 0;
  padding: 1vh;
}

.image-container {
  border: none;
}

.image-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.image-container a {
  color: inherit;
  text-decoration: none;
  background: transparent;
}

.main {
  /* text-align: center; */
}

.main h1 {
  font-size: 1.75rem;
}

.main h2 {
  font-size: 1.15rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: #99994d;
  text-decoration-thickness: 0.15vh;
  text-underline-offset: 35%;
}

.main p {
  font-size: 0.95rem;
  /* line-height: 0.6; */
}

.main a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;

}

.main a:hover {
  color: #595959;
  background: transparent;
}

.mail-button {
  background-color: inherit;
  color: inherit;
  border: none;
}

.mail-button:hover {
  color: #737373;
}

/* Modal */

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  min-width: 60vh;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  padding-top: 5vh;
  color: #55552b;
}

.modal-off {
  display: none;
}

.modal-on {
  display: block;
}

.modal-header {
  position: relative;
}

.modal-content {
  background-color: #fefefe;
  margin: 1vw auto;
  border-radius: 0.25rem;
  max-width: 60vh;
}

.modal-main {
  padding: 3%;
}

.modal-main h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

.modal-main label {
  font-size: 0.9rem;
  font-weight: normal;
}

.modal input, textarea {
  padding: 0.75vw;
  margin: 0.75vw 0;
  border: 1px solid #99994d;
  box-sizing: border-box;
  display: inline-block;
}

.modal input:focus, textarea:focus {
  outline: none;
  border: 2px solid #99994d;
}

.modal button {
  background-color: #55552b;
  font-size: 1rem;
  color: #f2eee4;
  padding: 0.75vw;
  margin: 0.75vw 0;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  width: 15%;
}

.modal button:hover {
  opacity: 0.8;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 1vw;
  font-size: 1.5rem;
  font-weight: bold;
  color: #55552b;
}

.modal-close:hover,
.modal-close:focus {
  color: #cc9900;
  cursor: pointer;
}

.modal-animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* Google re-recaptcha */
.grecaptcha-badge {
  bottom: 4vh !important;
}
