h1 {
  text-align: center;
  flex-wrap: wrap;
  color: white;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: black;
  color: white;
}

article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  max-width: 1700px;
  gap: 20px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-self: flex-start;
}

@media (max-width: 768px) {
  article {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  article {
    flex-direction: column;  
    text-align: center;      
  }
}
article img {
  width: 500px;
  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;
  flex-wrap: wrap;

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

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

    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);
  }

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

div {
  margin: auto;
  flex-wrap: wrap;
}
