iframe {
  vertical-align: middle;
}

body {
  margin: 0;
  background-image: url("../img/achtergrond.png");
  background-size: cover;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 3.5em;
  background-color: #1c1c1c;
}

#grid-container {
  height: 100vh;
  display: grid;
  grid-gap: 1rem;
  grid-template:
    "header header header" min-content
    "logo   stream chat"  69%
    "footer footer footer" 50px/ 1fr 8fr 3fr;
}

#header {
  grid-area: header;
}

#header img {
  max-height: 180px;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#stream {
  grid-area: stream;
}

#chat {
  grid-area: chat;
}

#logo {
  grid-area: logo;
  margin: 1rem;
  /* background-image: url("../img/logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; */
}

#footer {
  grid-area: footer;
  background-color: #efeff157;
}

@media (max-width: 1000px) {
  #grid-container {
    grid-template:
      "header" min-content
      "stream" 50%
	  "logo" min-content
      "chat"   80%
	  "footer" min-content;
  }

  #header img {
    max-width: 100%;
    height: auto;
  }

}

#form-inline {
	visibility: collapse !important
}

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

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