hmm, i was missing that but that didn’t work either… Here is a screen shot https://i.imgur.com/T3mXkNS.png
this is my css
`*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
font-family: cursive;
text-align: center;
min-height: 100vh;
min-width: 370px;
background-color: #18181A;
background-size: 200%;
}
h1 {
padding: 20px 10px;
letter-spacing: 0.2em;
color: white;
}
form * {
background: rgba(256, 256, 256, 0.3);
color: white;
}
form.search form .btn {
padding: 10px;
border-radius: 2px;
font-size: 16px;
border: 1px solid white;
}
::placeholder {
color: white;
}
form.search {
width: 40%;
min-width: 200px;
max-width: 600px;
}
form.search:focus {
outline: 0;
color: #333;
background: white;
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3),
}
form .btn {
cursor: pointer;
width: 90px;
}
.giphy {
padding: 20px 0px 15px 0;
}
.giphy img {
width: 200px;
max-width: 800px;
margin: auto;
display: block;
}
.giphy img.gif {
width: 50%;
max-width: 600px;
box-shadow: 0 0 1px 1px rgba(256,256,256,0.3);
}
footer {
padding: 5px;
font-size: 14px;
color: white;
}
footer a {
color: #333;
text-decoration: none;
}
footer a:hover {
color: white;
text-decoration: underline;
}
`