h1 {
  text-align: center;
  color: white;
  flex-wrap: wrap;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: white;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #d8d1d1;
}

article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  max-width: 1700px;
  gap: 20px;
  flex-direction: row;
}
@media (max-width: 768px) {
  article {
    flex-direction: column;  
    text-align: center;      
  }
}
article img {
  width: 150px;
  height: auto;
}

article p {
  flex: 1;
  font-size: 16px;
  color: #333;
}

img {
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
}

h2 {
  font-family: Georgia, serif;
  font-style: italic;

  text-align: center;
}
form {
  justify-content: center;
}
nav {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  flex-wrap: wrap;

  button {
    width: 150px;
    height: 50px;
    cursor: pointer;
    margin-top: 40px;
  }

  footer {
    margin-top: auto;
    border-top: 2px solid #ffffff;
    color: #ffffff;
    margin-left: 50px;
  }
}
span {
  text-align: right;
  margin-right: 50px;
  margin-top: 30px;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div{
  margin: auto;
  flex-wrap: wrap;
}

h5 {
  margin-top: 40px;
  width: 150px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgb(204, 189, 189);
  border: 2px solid white;
  border-radius: 12px;

  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: bold;

  transition: 0.3s;
}


h5:hover {
  background-color: rgb(120, 170, 255);
  color: white;
}

h5:active {
  transform: scale(0.96);
}