body {
  background-color: black;
  margin: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white; /* Text color */
  font-family: Arial, sans-serif;
  text-align: center;
}

.browser-icon {
    border-radius: 50%;
}

p {
    color: whitesmoke;
}

a:link, a:visited, a:hover, a:active {
    color: whitesmoke;
    text-decoration: none;
}

@keyframes subtle-motion-heartbeat {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    20% { transform: translate(1px, -1px) rotate(0.3deg) scale(1); }
    40% { transform: translate(-1px, 1px) rotate(-0.3deg) scale(1); }
    50% { transform: translate(0.5px, -0.5px) rotate(0.1deg) scale(1.05); } /* Soft heartbeat */
    60% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    80% { transform: translate(-0.5px, 0.5px) rotate(-0.1deg) scale(1.02); }
    100% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
}

.centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Spacing between image and text */
}

.centered-image, .animated-text {
    animation: subtle-motion-heartbeat 3.5s infinite ease-in-out;
}

.centered-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #333;
}

.animated-text {
    font-size: 20px;
    font-weight: bold;
}

