@import url('style.css');

.container{
  height:90vh;
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content:flex-start; /* Centers content vertically */
  gap: 5%; /* Adds space between flex items */
}


.text-block {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers content vertically */
  gap: 20px; /* Space between image and text */
  color: rgb(28, 65, 107);
  font-size: 20px;
  background-color: rgb(221, 242, 255);
  border: 2px solid  #f7a5ca;
  border-radius: 5%;
  padding: 5%;
}

.text-block p {
  text-align: center; /* Centers text within the block */
  font-size: 24px; /* Adjust font size as needed */
}

header h1 {

  padding: 0;
}



.button {
  background-color: #bee4f6;        /* soft pink */
  color: #444;                      /* soft contrast */
  border: 2px solid #f7a5ca;        /* slightly deeper pink */
  border-radius: 12px;              /* rounded corners */
  padding: 16px 24px;
  margin-bottom: 40px;
  font-size: 40px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.2s ease-in-out;
}

.button:hover {
  background-color: #a5e3f7;
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) inset;
}

.button a {
  text-decoration: none; /* Remove underline */
  color:rgb(255, 255, 255); /* Inherit color from button */
  text-shadow: 4px 4px 6px rgb(205, 147, 181);
}

.text-block h1{
    color:#f7a5ca;
    text-shadow: 4px 4px 6px rgb(255, 225, 242);
}

.floating-image {
  position: relative;         /* or 'fixed' if you want it to stay on screen while scrolling */
  top: 100px;                 /* vertical position from the top */
  left: 80px;                 /* horizontal position from the left */
  z-index: 999;               /* make sure it appears on top */
  width: 150px;               /* optional: adjust size */
  pointer-events: none;       /* optional: let clicks pass through */
}
