<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 1rem;
  background: #c5814e;
  font-family: "Raleway", sans-serif;
}

.box {
  width: 50vw;
  height: 50vw;
  max-width: 400px;
  max-height: 400px;
  border-radius: 10px;
  padding: 0.5rem;
  background: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  align-items: center;
}
.box:after {
  position: absolute;
  mix-blend-mode: color-burn;
  background: #b6862870;
  width: 140%;
  height: 50%;
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  transform-origin: 50% 50%;
}

.box:hover:after {
  width: 140%;
  height: 140%;
  top: 50%;
}

img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

@media screen and (min-width: 600px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body &gt; * {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    flex-wrap: wrap;
  }

  h1 {
    width: 100%;
    text-align: center;
  }

  .box {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 599px) {
  h1 {
    text-align: center;
  }
}</pre></body></html>