* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
  text-align: center;
  margin-top: 100px;
}
form {
  background-color: #c4c3d9ad;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom: 1px dashed black;
  padding: 10px;
}
/* Don't apply to the top label */
label {
  /* label:nth-child(n+2) also accomplishes the same thing */
  display: inline-block;
  margin-top: 10px;
  width: 120px;
}
input {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
button {
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 120px;
  background-color: #535180;
  color: white;
  border-radius: 1px;
  border: 2px solid #7e8051;
}
img {
  height: 246px;
  max-width: 100%;
  border: 1px solid black;
}
#placeHolder {
  margin-top: 0;
  background-color: #d8d9c3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  width: 100%;
  height: 300px;
  overflow-x: scroll;
}
#memesDone {
  width: auto;
}
.container {
  position: relative;
  flex-shrink: 0;
  min-width: 250px;
  height: 250px;
  border: 2px solid transparent;
}
.container:hover {
  border-color: red;
}
.memeitUp {
  max-width: 95%;
  margin: 0 auto;
  border: 2px solid black;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.fontStyles {
  font-weight: bold;
  font-size: .9em;
  color: red
}
.top-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  width: 100%;
}
.bottom-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  width: 100%;
}
