body {
   font-family: sans-serif;
   font-size: large;
   font-display: swap;
   line-height: 1.3;
   margin: 0 auto;
   padding: 1rem;
   max-width: 1280px;
}

input,
textarea,
button {
   font-size: large;
}

header {
   margin: 0 auto;
}

footer {
   text-align: center;
}

.logo-container {
   max-width: 809px;
   margin: 0 auto;
}

.logo {
   width: 100%;
   height: auto;
}

.intro-text {
   text-align: center;
   font-size: xx-large;
}

.info-section {
   display: flex;
   flex-flow: row wrap;
   justify-content: center;
   margin-top: 3rem;
   column-gap: 2rem;
}

.info-section:nth-child(odd) {
   flex-flow: row wrap-reverse;
}

.info-section-image {
   max-width: 464px;
   min-width: 320px;
}

.info-section-image>img {
   box-shadow: 0.5rem 0.5rem 0.5rem #ccc;
   width: 100%;
   height: auto;
}

.info-section-text {
   padding: 0 2rem;
   max-width: 500px;
   min-width: 320px;
   text-align: justify;
}

.contact-section {
   display: flex;
   flex-flow: row wrap;
   justify-content: space-evenly;
   margin-top: 3rem;
   row-gap: 3rem;
   column-gap: 2rem;
}

.contact-form {
   max-width: 400px;
   min-width: 320px;
}

.contact-address {
   max-width: 400px;
   min-width: 320px;
}

.contact-form textarea {
   width: 100%;
   height: 200px;
}

.contact-form input {
   width: 100%;
}

.form-row {
   margin: 0.75rem 0;
}

#contact-form-success {
   display: none;
}

.gmap {
   max-width: 400px;
   min-width: 320px;
}

.gmap img {
   width: 100%;
   height: auto;
}

footer {
   margin-top: 3rem;
}

.footer-logo {
   height: 2rem;
   width: auto;
   position: relative;
   top: 0.5rem;
}

.footer-company-text {
   font-style: italic;
}

a {
   text-decoration: underline dotted;
   color: #00b4e0;
}

a:hover {
   text-decoration: underline;
}

a:visited {
   color: #00728F;
}

input,
textarea,
button {
   padding: 0.25rem 0.5rem;
}

.blog-text {
   text-align: justify;
}

.blog-text img {
   margin: 1rem;
}

.left {
   float: left;
}

.right {
   float: right;
}

@media all and (max-width: 640px) {
   .intro-text {
      font-size: x-large;
   }

   .gmap {
      width: 320px;
      height: 240px;
   }

   .blog-text img {
      width: 100%;
      height: auto;
      float: none;
      margin: 0;
   }
}

@media (prefers-color-scheme: dark) {
   body {
      background: black;
      color: white;
   }

   .logo {
      filter: invert(1) hue-rotate(180deg) brightness(200%);
   }

   .info-section-image>img {
      box-shadow: none;
   }

   input,
   textarea,
   button {
      background: black;
      border-color: #999;
      color: white;
   }

   .invertable-colors-image {
      filter: invert(1);
   }
}