/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  

  /* Background image styles */
  background-image: url('yellowbackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  cursor: url('stephanie.png') 16 16, auto;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; /* spacing between image and circle */
  margin-top: 50px;
}

/* Image styling and animation */
.animated-img {
  width: 600px;
  height: 600px;
  animation: float 3s ease-in-out infinite;
}

/* Optional: Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* Giant centered circle */
.main-circle {
  width: 600px;
  height: 600px;
  background-color: #ffffff;
  border: 8px solid #fadadd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}




