@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; 
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(120, 120, 120);
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    width: 90%;
    min-height: 50rem;
    border-radius: 10px;
    padding: 50px 20px;
    background: #e6e6e6;
    box-shadow: inset -16px -16px 29px #c8c8c8,
                inset 16px 16px 29px #ffffff;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

button {
    font-size: 15px;
    margin: 20px 0 20px 0;
    padding: 12px;
    border-radius: 5px;
    width: 100px;
    border: none;
    outline: none;
    box-shadow: 0px 10px 20px -18px;
}

input {
    width: 390px;
    background-color: #f5f5f5;
    color: #242424;
    padding: .15rem .5rem;
    min-height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    line-height: 1.15;
    box-shadow: 0px 10px 20px -18px;
  }
  
  input:focus {
    border-bottom: 2px solid #5b5fc7;
    border-radius: 4px 4px 2px 2px;
  }
  
  input:hover {
    outline: 1px solid lightgrey;
  }

button:hover {
    cursor: pointer;
    color: rgb(240, 240, 240);
    background-color: rgb(80, 80, 80);
}

a {
    text-decoration: none;
    color: black;
}

.image-card {
    padding: 10px;
    text-align: center;
    height: 300px;
    width: 400px;
    border-radius: 0 0 5px 5px;
    margin: 10px;
    background: linear-gradient(145deg, #cfcfcf, #f6f6f6);
    box-shadow: 11px 11px 22px #b1b1b1, -11px -11px 22px #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block; 
    margin: auto;
}


.image-body {
    padding: 10px;
}

#generateMore {
    width: 200px;
    background-color: rgb(91, 129, 255);
    color: rgb(250, 250, 250);
}

#generateMore:hover {
    background-color: rgb(154, 188, 242);
    color: rgb(90, 90, 90);
}