@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Mr+Dafoe&family=Roboto+Condensed:wght@400;700&display=swap');
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}		
body {
  --shape-margin: clamp(1rem, 0.6364rem + 1.8182vw, 2rem);
  --left: 80%;
  background-color:#fefef2;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 100dvh;
  padding: 0;
}
h1 {
  background-color: #dd2c3b;
  color:#fefef2;
  display: block;
  font-family: 'Abril Fatface', cursive;
  font-size: clamp(2.25rem, 1.0682rem + 5.9091vw, 5.5rem);
  letter-spacing: 0.015em;
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  text-shadow: 4px 4px 0 #000;
}

article {
  background-color: #1a5fb4;
  color:#fefef2;
  display: block;
  font-family: 'Abril Fatface', cursive;
  font-size: clamp(2.25rem, 1.0682rem + 5.9091vw, 5.5rem);
  letter-spacing: 0.015em;
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  text-shadow: 4px 4px 0 #000;
}

h2 {
  color: #e6335a;
  font-family: 'Mr Dafoe', cursive;
  font-size: clamp(2.25rem, 1.0682rem + 5.9091vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 .65em 0;
  text-align: center;
  text-shadow: 4px 4px 0 #918a81;
  transform: rotate(-3deg);
}
p {
 font-size: 1.5rem;
}

main {
  font-size: large;
  line-height: 1.4;
  margin: 0;
  color: darkslategray;
  padding: 1em;
}

aside {
  background: #fee74c;
  clip-path: circle();
  float: right;
  height: 300px;
  object-fit: cover;
  shape-margin: var(--shape-margin);
  shape-outside: circle();
  width: 300px;
}
aside img {
  border-radius: 50%;
  height: 100px;
  object-fit: cover;
  transform: rotate(15deg) translate(50%, -40%);
  width: 100px;
}

q {
  color: hotpink;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  line-height: 1.1;
  padding: 2rem;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .7);
  quotes: "«" "»";
}
ul {
  display: grid;
  gap: 1em;
  padding: 0;
}
li {
  display: grid;
  gap: 1em;
  grid-template-columns: 150px 1fr;
}
li h3 {
  margin: 0;
}
h3 span {
  display: inline-block;
  font-size: .1rem;
  font-weight: 400;
}
li img {
  aspect-ratio: 1/1;
  block-size: 150px;
  border: 1px solid lightgray;
}
small {
  font-size: 1.25rem;
  display: block;
  line-height: 1.3;
  margin-block-start: .25rem;
  text-align: start;
}
@media (max-width: 500px) {
  aside {
    float: none;
    margin: 0 0 0 auto;
  }
}
.left {
  clip-path: polygon(0% 0%, var(--left) 50%, 0% 100%);
  float: left;
  height: 100vh;
  object-fit: cover;
  shape-margin: var(--shape-margin);
  shape-outside: polygon(0% 0%, var(--left) 50%, 0% 100%) padding-box;
  width: 25%;
}
