body {
  margin:0;
  padding:0;
}
 p {
   font-size: 1.5em;
 }

header {
  width: 100%;
  height: clamp(5vw,200px,20vw);
  display:flex;
  flex-direction: row;
}
#header-logo-div {
  height: 80%;
  aspect-ratio: 1 / 1;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: clamp(5px,30px,5vw);
  flex: 0 0 auto;
}
#header-gradient {
  display: flex;
  align-items: center;
  height:100%;
  margin-left: clamp(10px,30px,5vw);
  background:linear-gradient(to right, #fff, #008081);
  flex: 1 1 auto;
}
#header-title {
  text-align: right;
  color: white;
  text-shadow: 0 0.3vw 0.4vw #2c3a3a;
  margin-top:-0.1em;
  width:100%;
  transform: translate(0,30%);
  margin-right: clamp(5px,30px,5vw);
}