* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: aliceblue;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 550px;
    width: 90%;
}

#title {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#generated-img {
    transform: scale(1);
    max-width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#regenerate-bnt {
    background-color: #667eea;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: bold;
}

#regenerate-bnt:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(102, 126, 234, 0.4);
}

#regenerate-bnt:active {
    transform: translateY(0);
}

#download-btn{
    background-color: #667eea;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: bold;
}

#favorite-bnt {
    background-color: #667eea;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: bold;
}

#favorite-bnt:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(102, 126, 234, 0.4);
}

#favorite-bnt:active {
    transform: translateY(0);
}