*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #d6cece;
    
}
.container{
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
}
input{
    outline: none;
    height: 40px;
    width: 290px;
    padding: 10px;
    border: 2px solid orangered;
    border-radius: 3px;
}
#generator{
    margin-top: 30px;
    margin-right: 90px;
}
button{
    color: #fff;
    padding: 10px;
    background: orangered;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn #download{
    margin-top: 30px;
}

.img{
    margin-left: 75px;
    margin-top: -10px;
    margin-bottom: 10px;
}
h3{
    text-align: center;
    margin-bottom: 10px;
    margin-top: -10px;
}
