html {
  font-family: Lato, sans-serif;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  margin: 20;
}

.navbar {
  box-sizing: border-box;
  max-width: 200%;
  margin: 1rem;
  padding: 20 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 20px;
}

.navbar__brand {
  display: flex;
  align-items: center;
}

.navbar__logo {
  margin-right: 30px;
}

.navbar__navigation {
  display: flex;
  flex-direction: row;
  padding: 0;
  list-style: none; 
  color: #5c6b70;
}

.emphasis {
  font-weight: bold;
  color: #5c6b70;
  font-style: italic;
}

.navbar__navigation-item {
  margin-left: 50px;
  list-style: none; 
}

.navbar__link {
  text-decoration: none;
  color: inherit;
}

.main {
  margin: 30 auto;
  padding: 0 20px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.form__input {
  width: 100%;
}

.form__label {
  display: block;
  margin-bottom: 10px;
}

.form__textarea {
  width: inherit;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  background-color: #f3f6f6;
  margin-bottom: 10px;
}

.form__submit {
  background-color: #3cd0ff;
  border: none;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 30px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
}

.form__submit:hover {
  background-color: #18c1e1;
}

.entry {
  margin-top: 50px;
}

.entry__title {
  display: inline;
  font-size: 18px;
}

.entry__date {
  color: #5c6b70;
}

.entry__content {
  font-size: 16px;
  line-height: 150%;
}

.footer {
  background-color: #323f43;
  padding: 10 10;
  margin-top: 50px;
  border-top: 4px solid black;
  color: white;
  font-size: 11px;
}

.footer__content {
  max-width: 90%;
  margin: 20 20;
  padding: .5rem .5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.footer .left {
  flex-grow: 3;
  display: inline;
  flex-direction: column;
}

.footer .right {
  flex-grow: 3;
  display: flex;
  margin-left: .2rem;
  flex-direction: column;
}

.footer__column {
  width: 200rem;
  display: flex;
  margin-left: 10px;
  flex-direction: column;
}

.footer__item {
  margin-bottom: 5px;
  color: inherit;
  text-decoration: none;
}
.footer__header {
  white-space: nowrap;
}

.footer__copyright {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  margin-left: 1rem;
  white-space: nowrap;
}

.jumbotron {
      padding: 1rem 1rem;
      margin-bottom: 1rem;
      background-color: #e9ecef;
      border-radius: .3rem;
      width: 100vw;
}

.youtube-container {
  position: relative;
  width: 100%;
  padding-top: 5%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  overflow: hidden;
}

.youtube-video {
  aspect-ratio: 16 / 9; 
  width: 70%;

 } 
