
#myVideo { 
  display: none;
}

main {
  position: absolute;
  width: 100%;
  text-align: center;
}

.logo { width: 90%; }

p { color: black;
font-size: large;
text-align: center; }

h2 { text-align: center;
font-size: 5vw;
color: #E02419; 
background-color: #F1F7ED; }

button {
    text-align: center;
}


@media (min-width: 768px) {
 
#myVideo { 
  display: block;
  z-index: -10;
  position: fixed;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
}

main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  background-color: rgba(255, 255, 255, 0.75);  
}

h2 {
    font-size: 35px;
}

.logo { width: 600px; }

}



