.aboutBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.aboutBox .left img {
    
}

.aboutBox .right {
  max-width: 400px;
  text-align: left;
}

.aboutBox .right h3 {
  font-size: 16px;
  margin-bottom: 2rem;

}

.aboutBox .right button {
  background-color: #0044ff;
  padding: 2rem;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 75%;
}

.aboutBox .right button:hover {
  background-color: #0056b3;
}

