body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #c7ff9a 0%, #c4d7fa 100%);
    margin: 0;
    padding: 20px;
    color: #333;
}
header {
    text-align: center;
    margin-bottom: 60px;
}
h1 {
    color: #1e2fe9;
    font-size: 2.5em;
    margin: 0;
}
p {
    font-size: 1.2em;
    margin: 10px 0;
}
#getQuoteBtn {
    font-size: 1.5em;           /* Bigger text */
    padding: 15px 30px;         /* Bigger button */
    background-color: #4CAF50;  /* A nice green background */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    display: block;             /* So we can move it around easily */
    margin: 40px auto 20px auto; /* Moves it down and centers it horizontally */
}

#getQuoteBtn:hover {
    transform: scale(1.25);     /* Slight zoom on hover */
}
.fancy-text {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
    margin-bottom: 20px;
}

@keyframes shimmer {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 500px 0;
    }
}

.fancy-text {
    background-size: 200% auto;
}

.button-container {
    display: flex;
    justify-content: space-between; /* pushes first button left, second button right */
    align-items: center;
    max-width: 600px;               /* or whatever width you prefer */
    margin: 40px auto;              /* center the container */
}

a {
    text-decoration: none;
    color: #fff;
    background-color: #E91E63;
    padding: 15px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}
a:hover {
    background-color: #C2185B;
    transform: translateY(-3px);
}
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
    color: #555;
}
.output-container {
  display: flex;
  justify-content: space-between; /* pushes the two boxes to edges */
  align-items: flex-start;
  max-width: 800px;               /* or whatever fits your layout */
  margin: 20px auto;              /* center on page with some vertical spacing */
}

#quoteBox,
#gifBox {
  width: 45%;                     /* each takes up 45% of the container */
}

#gifBox img {
  max-width: 100%;                /* make GIF scale down to fit its box */
  height: auto;
}
