body{
    background-color: #fff6f6;
    text-align:center;
}

.title{
    font-family: 'Pangolin', cursive;
    font-size: 80px;
    color: #fb929e;
}

.gifs{
    width: 100%;
    height: 100%;
    background-color: #fb929e;
}

.lightbox{
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.lightboxGif{
    
}

.grid-container{
    max-width: 900px;
    margin-left:auto;
    margin-right:auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-auto-rows: minmax(100px,300px);
    grid-gap:20px;
    padding:20px;

    
}

@media only screen and (max-width:1000px){
    .grid-container{
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    }
}

@media only screen and (max-width:665px){
    .grid-container{
    grid-template-columns: repeat(1, auto);
    max-width: 300px;
    }
}

.userInput{
    width: 100%;
     max-width: 500px;
     box-sizing: border-box;
    background-color: #ffdfdf;
    border:none;
    padding:20px 30px 20px 30px;
    font-size:20px;
    font-family: 'Lato', sans-serif;
    text-align:center;
}
form{
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
    display:grid;
    grid-template-columns: 3fr 1fr;
    margin-bottom:30px;
}
.search-button{
    background-color: #ffdfdf;
    border:none;
    height: 100%;
    font-family: 'Lato', sans-serif;
    font-size:17px;
    font-weight: bold;
    color: #fb929e;
    
}