* {
  font-family: "Unica", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}

body {
  background-color: rgb(250, 250, 250);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  color: black;
  text-decoration: underline;
  transition: opacity 300ms;
}

figcaption {
  margin-top: 0.5rem;
}

a:hover {
  opacity: 0.5;
}

.intro {
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.intro__title {
  display: inline-block;
  margin-right: 1em;
}

.intro__bio {
  display: inline;
  
}

.video {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1rem;
}

.video__header {
  background-color: rgb(230, 230, 230);
  border-radius: 4px 4px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.5rem;
  width: 100%;
  max-width: 800px;
}

.video .corner {
  width: 20%;
  display: flex;
}

.corner .circle {
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background-color: white;
  margin-right: 4px;
}

.video .url {
  width: 50%;
  background-color: white;
  padding: 0.15rem 0.25rem 0.1rem;
  border-radius: 2px;
}

.video video {
  border-radius: 0 0 4px 4px;
  width: 100%;
  max-width: 800px;
}

.websites-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
}

.websites-list li {
  display: inline-block;
  margin-right: 1rem;
}

.websites-list a  {
  text-decoration: none;
}

.footer {
  padding: 0.5rem;
}