/* Google-like Minimalist Reset & Typography */
:root {
  --primary-color: #202124;
  /* Google Dark Gray */
  --secondary-color: #5f6368;
  /* Google Medium Gray */
  --bg-color: #ffffff;
  --accent-color: #4285f4;
  /* Google Blue */
  --font-family: 'Product Sans', 'Roboto', Arial, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--primary-color);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Breathing Background Animation */
.breathing-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  /* Reduced size for a focused glow */
  height: 600px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
  /* Increased opacity for contrast */
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: breathe 6s ease-in-out infinite;
  -webkit-animation: breathe 6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  will-change: transform, opacity;
  border-radius: 50%;
}

@keyframes breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

@-webkit-keyframes breathe {

  0%,
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

/* Main Container */
.container {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

/* Logo Styling */
.logo-container {
  margin-bottom: 1.5rem;
}

.logo {
  width: 64px;
  height: 64px;
  stroke: var(--secondary-color);
  transition: stroke 0.3s ease;
}

.container:hover .logo {
  stroke: var(--accent-color);
}

/* Text Styling */
h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 300;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .logo {
    width: 48px;
    height: 48px;
  }
}