.image-container {
  display: flex;
  flex-wrap: wrap;
}

.image-div {
  width: 50%;
  padding: 10px;
}

.image-div1 {
  width: 50%;
  padding: 10px;
  margin-left: auto;
  margin-top: 150px;
}

.image-div img,
.image-div1 img {
  width: 70%;
  height: auto;
  margin-left: 18%;
}

.image-div p,
.image-div1 p {
  text-align: center;
  font-size: large;
  color: rgba(255, 255, 255, 0.938);
}
.line {
  width: 100%;
  display: flex;
}
.logo {
  width: 35%;
  margin-top: 2%;
  margin-bottom: 2%;
}
h3 {
  text-align: center;
  width: 60%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
  margin-left: 20%;
  color: rgba(255, 255, 255, 0.897);
}
button {
  width: 16%;
  height: 60px;
  font-size: 25px;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
  margin: 0% 42% 10%;
}
a:link {
  text-decoration: none;
  color: white;
}
a:visited {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
a:hover {
  text-decoration: none;
  color: black;
}
a:active {
  text-decoration: none;
  color: white;
}

button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: white;
  z-index: -1;
  transition: all 0.5s;
}

button:hover::before {
  width: 100%;
}

button:hover {
  color: black;
}

button:active:before {
  background: #b9b9b9;
}
h4 {
  text-align: center;
  width: 70%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  margin-top: 10%;
  margin-left: 15%;
  color: rgba(255, 255, 255, 0.897);
}
