body {margin: 0;}

body, html {
  height: 100%;
  margin: 0;
  background-color:#0d0d0d;
}

div.logo {
width : 20%px;
height : auto;
padding-left : 90px 40px ;
padding-right: 20px 20px;
}

.bg {
  /* The image used */
  background-image: url("images/background.jpg");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #0d0d0d;
}

ul.topnav li {float: right;}

ul.topnav li a {
  display: block;
  font-family : "Noto Sans Extralight", Noto, sans serif;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #107369;}

ul.topnav li a.active {background-color: #4CAF50;}

ul.topnav li.right {float: right;}

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

* {
  box-sizing: border-box;
   font-family : "Noto Sans Extralight", Noto, sans serif;
    font-size : 15px;
    color: #737373;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #107369;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}




.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

  ul.topnav li.right, 
  ul.topnav li {float: none;}

  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
