*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    background-color: bisque;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    background-color: white;
    padding: 20px;
   border-radius: 5px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   max-width: 500px;
   width: 90%;
   text-align: center;
}
.meme-container{
    width: 100%;
    display:flex;
    justify-content: center;
}
#meme{
    max-width: 100%;
    max-width: 400px;
    border-radius: 5px;
}

button{
    cursor:pointer;
    padding: 10px;
    background-color:yellowgreen ;
    color: rgb(240, 233, 241);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}
button:hover{
    background-color:greenyellow ;

}
button:disabled{
    background-color: wheat;
    cursor:not-allowed;
}
