
html {
    height: 100%;
}

body {
    min-height: 100%;
  }
  


.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    color: white;
}

.content {
    text-align: center;
}

.content img {
  max-width: 150px;
  margin-bottom: 2rem;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: black;
    text-decoration: none;
}

.button:hover {
    background: yellow;
}

.video-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
}

