html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Calibri', sans-serif;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 1rem;
    text-align: center;
}

.fade-box {
    margin-bottom: 1rem;
    transition: opacity 1s ease, height 1s ease, margin 1s ease, padding 1s ease;
    opacity: 1;
    height: auto;

    color: #363A36;
    font-size: 1.2em;
  
}

.fade-box.hidden {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.site-link {
    color: #00a98f;
    text-decoration: none;
}

.site-link:hover {
    color: #48C9B0;
}

.image-box {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: block;
    margin: 0.8rem auto 1.5rem auto;
}

.generate-button {
    background-color: #F07F3D;
    color: #FFEEDC;
    border: none;
    border-radius: 1.5rem;
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.generate-button:hover {
    background-color: #d96f32;
    transform: scale(1.03);
}

@media (min-width: 768px) {
    .image-box {
        width: 80vw;
        max-width: 600px;
    }
}