
body {
  background-color: #0C151C;
  color: #E4E5EA;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
}
#site-title, #site-description, #phone {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
a {
  color: #6B99C3;
  text-shadow: 0px 0px 1px #E4E5EA;
}
a:hover {
  text-shadow: 0px 0px 2px #E4E5EA;
}
#site-title > a {
  color: #E4E5EA;
  text-decoration: none;
  font-size: 5em;
  text-shadow: 0px 0px 10px #6B99C3;
}
#site-title > a:hover {
  text-shadow: 0px 0px 15px #E4E5EA;
}
#site-description > p {
  color: #6B99C3;
  text-decoration: none;
  font-size: 2em;
  text-shadow: 0 0 32px #E4E5EA;
}
#menu {
  background-color: #D2D2D4;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.5em;
  padding: 0.5em;
  max-width: 50em;
  margin: auto;
}
nav > a {
  color: #16354D;
  text-decoration: none;
}
nav > a:hover {
  text-shadow: 0px 0px 1px #16354D;
}
#lang {
  display: flex;
}
#lang > form > input {
  background: none;
  border: none;
  cursor: pointer;
  color: #16354D;
  text-decoration: none;
  font-size: 1em;
}
#lang > form > input:hover {
  text-shadow: 0px 0px 1px #16354D;
}
.grid-container {
  display: grid;
  justify-content: space-evenly;
  align-content: center;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3em;
}
.grid-item {
  margin: 1em;
  align-content: space-evenly;
  font-size: 1.2em;
}
.grid-item > a {
  display: block;
  height: 100%;
  color: #E4E5EA;
  text-decoration: none;
  box-shadow: 0 0 5px #6B99C3;
  text-shadow: none;
}
.grid-item > a:hover {
  box-shadow: 0 0 10px #6B99C3;
  text-shadow: 0px 0px 1px #E4E5EA;
}
.grid-item > a > img {
  width: 100%;
}
.grid-item > a > h3 {
  margin: 0;
  padding: 1em 1em 0.5em 1em;
}
.grid-item > a > p {
  margin: 0;
  padding: 0.5em;
  font-size: 1em;
}
#content {
  max-width: 50em;
  margin: 3em auto;
}
#content > p > img {
  display: block;
  margin: auto;
  width: 65%;
}
#content > h1 {
  width: 90%;
  margin: 1em auto auto auto;
  text-align: center;
}
#content > h2 {
  margin: 2em auto auto auto;
  text-align: center;
  width: 90%;
}
#content textarea {
  width: 100%;
  background-color: #0C151C;
  color: #E4E5EA;
  border: none;
  outline: none;
  box-shadow: 0 0 5px #6B99C3;
}
#content input {
  background-color: #0C151C;
  color: #E4E5EA;
  border: none;
  margin: 1em;
  outline: none;
  box-shadow: 0 0 5px #6B99C3;
}
iframe {
  border: none;
  box-shadow: 0 0 5px #6B99C3;
}
.succes_message {
  color: #33FF33;
}
.error_message {
  color: #FF3333;
}
#content .input_error {
  box-shadow: 0 0 5px #FF3333;
}
.line {
  height: 1px;
  background-color: #D2D2D4;
}
#phone {
  margin: 2em; 
  font-size: 2em;
}
#phone > p > a {
  color: #6B99C3;
  text-decoration: none;
}
#phone > p > a:hover {
  text-shadow: 0px 0px 2px #E4E5EA;
}

@media only screen and (max-width: 1280px) {
.grid-container {
  grid-template-columns: 1fr 1fr;
}
}

@media only screen and (max-width: 992px) {
#site-title > a {
  font-size: 3em;
}
nav {
  flex-direction: column;
  align-self: center;
  padding: 0
}
nav > a {
  margin: 0.2em;
}
.grid-container {
  grid-template-columns: 1fr;
}
.grid-item {
  margin: 1em;
}
#content > p > img {
  width: 100%;
}
}
