body {
    background-color: black;
    color: pink;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  font-family: "Georgia", serif;

}

.scene {
  text-align: center;
  padding: 24px 16px 48px;
}

.hidden {
  display: none;
}

h1 {
    font-size: 5rem;
    text-align: center;
    margin-top: 10vh;
    font-family: 'Brush Script MT', cursive;
}

h3 {
    font-size: 24px;
    text-align: center;
}

.prompt {
  font-size: 22px;
  margin-top: 24px;
}

.input-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
  flex-direction: row;
}

input[type="text"] {
  width: min(420px, 80vw);
  padding: 12px 14px;
  font-size: 18px;
  border-radius: 8px;
  border: 2px solid #f19aea;
  background: #121212;
  color: pink;
  outline: none;
}

input[type="text"]:focus {
  box-shadow: 0 0 14px rgba(241, 154, 234, 0.5);
}

.btn-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15vh;
    margin-bottom: 10vh;
}

.button {
  min-width: 300px;
  min-height: 60px;
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  background: #f19aea;
background: linear-gradient(180deg, rgb(235, 122, 206) 0%, rgb(175, 6, 105) 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(117, 20, 85, 0.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

.button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #f188c2;
  box-shadow: 0 0 60px rgba(238, 100, 226, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}


.button:hover::before, 
.button:focus::before {
  opacity: 1;
}

.button::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #f846c3;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button:hover::after, 
.button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.img-cont {
    width: auto;
    height: 50vh;
    margin: auto;
    justify-content: center;
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 15vh;
  flex-wrap: wrap;
}

.img {
    width: 30vw;
    height: 40vh;
    border-radius: 15px;
    object-fit: cover;
    transition: ease-in-out 0.3s;
  min-width: 240px;
}

.img:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

.error {
  color: #ff7bbd;
  margin-top: 12px;
  min-height: 24px;
}

.btn {
    padding: 1.3rem;
    height: 2rem; 
    color: rgb(58, 49, 49);
    background-color: pink;
    border-radius: 30px;
    font-size: 1.5rem;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    line-height: 1;
    border: none;
}

.btn:hover {
    background-color: #c44995;
    cursor: pointer;
    transform: scale(1.05);
    transition: transform 0.3s;
    color: white;
}
