@import url('https://fonts.googleapis.com/css2?family=Manrope');

:root {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  --clr-bg: #020617;
  --clr-text: #fff;
}

body {
  height: 100svh;
  
  display: grid;
  place-items: center;
  
  font-family: "Manrope", sans-serif;
  
  background: var(--clr-bg);
  color: var(--clr-text);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

svg[defs] {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

img {  
  background: #fff3;
  color: #fff5;
  inline-size: min(10rem, 100%);
  aspect-ratio: 5 / 7;
  
  corner-shape: squircle;
  border-radius: 2em;
  position: fixed;
  
  display: grid;
  place-items: center;
  object-fit: cover;
  
  filter: url(#filter-0);
}