* {
  font-family: Lato, Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  font-size: 20px;
}

body {
  width: 100vw;
  padding: 0;
  margin: 10vh 0;
  background-color: #191821;
  color: white;
}


a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
}

.section {
  margin: 10px;
  padding: 0 2rem ;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(12, 12, 12, 0.5);
}

#main-container {
  margin: auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#main {
  display: flex;
  width: 100%;
  flex-direction: row;
}

#sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#content {
  padding: 0;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#balon-video {
  align-self: flex-start;
  max-width: 100%;
}

#logo {
  max-width: 200px;
  align-self: center;
  margin: 2rem;
}

#footer {
  font-size: 0.8rem;
  padding: 1em 0;
  margin-top: auto;
}

@media (max-width: 1200px) {
  #main {
    flex-direction: column-reverse;
  }

  #sidebar, #content {
    width: 100%;
    margin: 10px 0;
  }
}