* {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #002a51;
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
body {
  height: 100%;
}
.container {
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imageContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20;
  padding-bottom: 20;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid #002a51;
}
.image {
  width: 100%;
  max-width: 400px;
}
.heading {
  margin-top: 10%;
  font-size: 50;
  color: #002a51;
  text-align: center;
}
.text {
  font-size: 25;
  text-align: center;
}
.details {
  flex-direction: row;
}
@media (max-width: 600px) {
  .heading {
    font-size: 35;
  }
  .text {
    font-size: 20;
  }
}
.padding {
  padding: 20px;
}
