body {
  /* background-color: red; */
}
nav {
  display: flex;
  margin-bottom: 7vh;
  align-items: center;
  flex-direction: row;
  background-color: white;
  justify-content: space-evenly;
  border-bottom: 1px solid #555;
  border-top: 1px solid #555555;
}
nav a {
  padding: 5px 10px;
}
.main-header-wrapper {
  min-height: 10vh;
}
.main-content-wrapper {
  min-height: 90vh;
}
label {
  font-size: 24px;
  font-weight: 500;
}
img.logo{
  padding: 50px 0;
}
#recorder {
  padding: 0;
  margin-top: 33px;
  border: 3px solid #2a74eb;
}
[data-selector="video-recorder-container"] {
  height: calc((100vw - 30px) * 0.5625) !important;
  max-height: 641px !important;
}
@media (max-width: 1000px) {
  [data-selector="video-recorder-container"] {
    height: calc(100vw - 30px) !important;
    max-height: 1140px !important;
  }
}
@media ( max-width: 550px ) {
  nav {
    flex-direction: column;
  }
}