* {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  background: white;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

.wrapper .header {
  background: #CCCCCC;
}

.wrapper .header img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper .content {
  padding: 20px;
}

.wrapper .content h1 {
  font-weight: normal;
  font-size: 25px;
  font-size: clamp(18px, 4vh, 120px);
  margin: 0;
}

.wrapper .content h1 strong {
  color: #0068b4;
}

.wrapper .content p {
  font-size: 20px;
  font-size: clamp(12px, 2.4vh, 100px);
  line-height: 1.2em;
  margin: 0;
}

.button {
  text-transform: uppercase;
  color: white;
  background-color: #0068b4;
  border-radius: 1em;
  text-align: center;
  padding: 0.5em;
  text-decoration: none;
  display: inline-block;
  width: 13em;
  font-size: 14px;
  font-size: clamp(14px, 1.8vh, 80px);
  line-height: 1.1em;
  transition: all .4s ease;
}

.button:hover, .button:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgb(0 114 189 / 50%);
}

@media screen and (min-height: 500px) and (min-width: 500px) {
  body {
    background: #EEEEEE;
  }

  .wrapper {
    flex-wrap: wrap;
    height: 90vh;
    margin-top: 5vh;
    margin-bottom: 5vh;
    border: 1px solid #CCCCCC;
    background: white;
  }

  .wrapper .header {
    height: 50%;
    aspect-ratio: 1200/800;
    position: relative;
  }

  .wrapper .header img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }

  .wrapper .content {
    height: 50%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mb {
  margin-bottom: 30px !important;
  margin-bottom: clamp(25px, 1.8vw, 120px) !important;
}

small {
  font-size: 0.6em;
}

.text-center {
  text-align: center;
}