*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:#f4f7fb;
    color:#222;
}

.header{
    background:#4f46e5;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:white;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

.container{
    width:90%;
    max-width:800px;
    margin:40px auto;
    background:white;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

h1{
    margin-bottom:15px;
}

p{
    color:#666;
    margin-bottom:25px;
}

.preview{
    margin:25px auto;
}

.preview img{
    max-width:100%;
    max-height:400px;
    display:none;
    border-radius:10px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin:20px 0;
}

button,
#downloadBtn{

    background:#4f46e5;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;

}

button:hover,
#downloadBtn:hover{
    background:#3730a3;
}


@media(max-width:768px){

.header{
    flex-direction:column;
    gap:15px;
}

.buttons{
    flex-direction:column;
}

button{
    width:100%;
}

}
