@font-face {
  font-family: Chewy;
  src: url('fonts/Chewy-Regular.ttf');
}

body {
  background: url('./images/floweryBackground.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  border: 0;
}

div.container {
  box-sizing: border-box;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  overflow: auto;
}

div.textContainer {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

div.imageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mumImage {
  width: 40vw;
  height: auto;
  margin-top: 10px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 2s ease-in; /* Apply fade-in animation */
}

.mumLifeMoment {
  position: relative;
  display: inline-block;
  font-size: 9vw;
  font-family: Chewy, monospace;
  letter-spacing: 0.02em;
  color: #2bc5cb;
  padding: 20px; 
  background: #ffffff; 
  border-radius: 50px; 
  border: 2px solid lightgrey;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  margin-top: 20px;
}

.mumLifeMoment::after {
  content: ''; /* Creates the second "thought bubble tail" */
  position: absolute;
  bottom: -52px; 
  right: 50px; 
  width: 40px;
  height: 40px;
  background: #ffffff; 
  border-radius: 50%;
  border: 2px solid lightgrey; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mumLifeMoment::before {
  content: ''; /* Creates the smaller circle for the thought effect */
  position: absolute;
  bottom: -82px; 
  right: 90px;
  width: 27px;
  height: 27px;
  background: #ffffff; 
  border-radius: 50%; 
  border: 2px solid lightgrey; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}



.floating-credit {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7); /* Slight transparency */
  color: white;
  font-size: 3.5vw;
  font-family: Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s, opacity 0.3s;
  opacity: 0.4; /* Starts subtle */
}

.floating-credit:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 0.6;
}