@font-face {
    font-family: 'Open_Sans';
    src: url('./Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
}
body {
    font-family: 'Poppins', sans-serif;
}


*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    color: white;
}
.container{
    height: 260px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #4a0400;
}
.container .app-name{
    padding: 2%;
    justify-content: center;
    /*align-items: center;*/

    font-size: 25px;
    color: rgb(219, 252, 255);
}
.container .welcome{
   /* align-items: center;*/  
    justify-content: center;
    font-size: 17px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container .prompt-box{
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: center;
}


.container .prompt-box .prompt input{
    padding: 5px;
    background-color: #ffffff;
    border-radius: 40px;
    width: 600px;
    font-size: 15px;
    color:  #4a0400;
    height: 43px;
    text-align: center;
    font-family:cursive;
    
}
.container .prompt-box button{
    position: relative;
    right: 110px;
    /* margin: 20px; */
    width: 106px;
    height: 47px;
    background-color: #1c00f3;
    border-radius: 29px;
    border: 2px solid white;
}
.generated-container{
    display: flex;
    height: 520px;
    background-color: #f5f5dc;
}
.generated-container img{
    margin: 40px;
    display: none;
    width: 300px;
    height: 350px;
    border-radius: 14px;
}