﻿@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700");

body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, #f4c6a5 0%, #f9d9c2 10%, #fff3e9 30%);
}

svg {
  max-width: 70vw;
  max-height: 80vh;
  aspect-ratio: 1 / 1;
}

svg #blobClip {
  transform-origin: center;
  transition: transform 0.3s ease;
}

svg:hover #blobClip {
  transform: scale(1.15);
}

svg:hover .text-content {
  fill: #fff;
}

.text-content {
  font: 700 10px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  fill: #000;
  transition: fill 0.3s ease;
}

#dev {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 1em;
  border-radius: 25px;
  background-color: #fff;
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  cursor: pointer;
}

#dev a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

#dev a:hover {
  color: #ef5350;
  text-decoration: underline;
}

#dev span {
  display: inline-block;
  color: pink;
  transition: transform 0.3s ease;
}

#dev span:hover {
  transform: scale(1.2);
}
