body {
    margin: 0;
    padding: 0;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
}

p {
    font-weight: 300;
    font-size: 16px;
}

h1 {
    font-weight: 600;
}

#scroll-area {
    display: block;
    padding: 20px;
}

.sub-block {
    background-color: AliceBlue;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border-radius: 20px;
}

.sub-block img {
    width: 100%;
    height: 100%;
}

.sub-block iframe {
    width: 100%;
    border: 2px solid Aquamarine;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
}

#titlebar {
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 20px;
  background-color: aquamarine;
  box-shadow: 0px 0px 10px 10px #00000020;
  border-radius: 0px 0px 20px 20px;
}

#titlebar h1 {
    font-size: 3em;
}

#titlebar img {
    height: 100%;
    object-fit: contain;
    margin-right: 20px;
}