
div.logo{
    margin: auto;
    display:block;
    width: 67%;
    height: auto;
}

body {
    position: absolute;
    background-image: url("/images/background.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed
}

div.content{
    display: block;
    margin: 2em auto 2em;
    width: 60%;
    overflow: hidden;
    box-shadow: 1em 1em 1em #000;
    border-radius: 2em;
}
    div.content2{
    display: block;
    margin: 2em auto 2em;
    width: 60%;
    overflow: hidden;
    box-shadow: 1em 1em 1em #000;
    border-radius: 2em;

}
    div.content3{
    display: block;
    margin: 2em auto 2em;
    width: auto;
    overflow: hidden;
    box-shadow: 1em 1em 1em #000;
    border-radius: 2em;

}
div.article{
    padding-top: 1em;
    display: block;
    margin: auto;
    width: 60%;
    border-radius: 2em;
    border: 2px solid grey;
    box-shadow: 1em 1em 1em #000;
    font-family: courier;
    color: white;
    background-image: url(/images/bg_def.png);
    background-size: contain;
}

img {
    width: 100%;
    height: 100%;
}
p.article{
    padding: 1em;
    text-align: justify;
    font-size: 120%;
    font-weight: bold;
}

html {
    position: relative;
    margin: auto;
    max-width: 1200px;
    min-width: 900px;
    min-height: 768px;
    height: 100%;
}

div.menu {
    background-image: url(/images/menuback.png);
    background-size: contain;
    margin: 2em auto 2em;
    width: 70%;
    display: flex;
    flex-direction: row;
    background-color: forestgreen;
    border: 1px solid black;
    box-shadow: 1em 1em 1em;
    border-radius: 1em;
    
}

li.menuitem {
    flex-grow: 1;
    text-align: center;
    background-color: transparent;

}

li{
    list-style-type: none;
}



}

.container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="subject"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Courier";
}

#contact {
    background-image: url(/images/bg_def.png);
    background-size: contain;
  padding: 25px;
  margin: auto;
  box-shadow: 1em 1em 1em;
    border: 1px solid black;
    width: 60%;
    border-radius: 1em;
}

#contact h3 {
  font-family: Courier;
  text-align: center;
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
    color: white;
}

#contact h4 {
  font-family: courier;
  text-align: center;
  margin: 5px 0 15px;
  display: block;
  font-size: 15px;
  font-weight: bold;
    color: white;
}

fieldset {
  font-family: courier;
  border: medium none !important;
  margin: auto;
  padding: 0;
    width: 70%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="subject"],
#contact input[type="url"],
#contact textarea {
  font-family: courier;
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="subject"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  font-family: courier;
  cursor: pointer;
  width: 100%;
  border: none;
  /*background: #004808;*/
  background-image: url(/images/menuback.png);
    background-size: contain;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
    border-radius: 1em;
}

#contact button[type="submit"]:hover {
  /*background: darkred;*/
    background-image: url(/images/menuback_red.png);
    background-size: contain;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}



a:link {
    color: black;
    text-decoration: none;
}

a:visited {
    color: black;
    text-decoration: none;
}

a:hover {
    color: darkred;
    text-decoration: underline;
}

a:active {
    color: midnightblue;
    text-decoration: underline;
}