/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;

}
body {
  font-family: Monospace;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1em;
  background: pink;
}
body > div {
  margin: 0;
  display: grid;
  gap: 0.5em;
  background: #000a;
  padding: 0 3rem 20rem;
  clip-path: shape(from 1rem 0, line to calc(100% - 1rem) 0, curve to 50% 100% with 100% 100%, curve to 1rem 0 with 0 100% );
}
p img {
  margin: auto;
  display: block;
  
}
p a:has(img){
  display: block;
}
p:has(a img) {
  display: flex;
  gap: 1rem;
  text-align: center;
  justify-content: center;
}