@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
  padding: 0;
  margin: 0;
  background-color: #253d4f;
}
.wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100svw;
  height: 100svh;
}
.container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  max-width: 70svw;
  margin: 5vh auto 10svh auto;
  background-color: #fff;
  max-height: 50vh;
  padding: 5vh;
}
.container img {
  max-width: 100%;
  height: 150px;
  width: auto;
  display: block;
}
.container p {
  font-size: 18px;
  font-family: 'Open Sans',Verdana,Arial,Helvetica,sans-serif;
  font-weight: 400;
}
.container p a {
  color: #0092a6;
}
@media all and (min-width: 1025px) {
  .container {
    max-width: 1280px;
  }
}