body {
  background-color: #3d3434;
}
h1 {
margin: 30 auto;
  color: 1abb12;
  font-family: arial;
  font-size: 120%;
}

p {
margin: 30 auto;
  color: white;
  font-family: arial;
  font-size: 90%;
}

a:link {
  color: gold;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: gold;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: orange;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

.embed-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    margin: 10 auto; /* Also a common way to center block elements */
}

.my-block {
            text-align: center;
            
        }

.video.is-16by9 {
    position: relative;
    width: 90%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video.is-16by9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
}