body {
  background-image: url('bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  color: white;
}

h1 {
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  margin-top: 20px;
  padding: 5px;
  color: wheat;
}

img {
  max-width: 400px;
  width: 100%;
}

input, select {
  padding: 10px;
  font-size: 18px;
  background-color: black;
  color: white;
  border: none;
  border-bottom: 1px solid white;
  outline: none;
}

.container {
  max-width: 800px;
  background-color: rgba(0,0,0,0.2);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

 .container {
  display: flex;
  flex-direction: column;
}

.container2 {
  display: flex;
  flex-direction: row;
}


.creator {
  margin-right: 20px;
  width: 350px;
}

.final-meme{
  text-align: center;
  color: white;
  background-color: #c0392b;
}

input, select, #selected-image {
  width: 100%;
  display: block;
  margin-top: 20px;
}


button, a {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  margin-top: 5px;
  font-size: 24px;
  outline: none;
  cursor: pointer;
  font-family: 'Bebas Neue', cursive;
}



@media (max-width: 700px) {
  .container {
    flex-flow: column-reverse;
    background-color: rgba(0,0,0,0.6);
  }
}

@media (max-width: 500px) {
  .container {
    flex-flow: column;
  }
}

.container > form > p {
  color: #c0392b;
  background-color: white;
  padding: 5px;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
}

a {
  width: 125px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.links > a {
  background-color: white;
  color: red;
  margin-bottom: 20px;
}

.links{
  
}

.footer{
  margin: auto;
  font-size: 25px;
  color: lightblue;
  background-color: black;
  border: 3px solid lime;
  border-radius: 10px;
  width: 500px;
  text-align: center;
  position: fixed;
  bottom: 0px;
}

.footer-container{
  display: flex;
  justify-content: center;
}

.memes-heading{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.display-photo{
  max-width: 150px;
}

#publish-btn{
  background-color: black;
}

.meta{
  display: flex;
  height: 10%;
  width: 100%;
  flex-direction: row;
}

.meta > img{
  max-width: 100px;
  height: 100px;
}

.post > p{
  color: bisque;
  background-color: navy;
  max-width: 400px;
  overflow-x: auto;
}

.meme{
  background-color: #33445E;
  margin: 20px;
  max-width: 600px;
  max-height: 750px;
}

.info{
  margin-left: 30px;
}


.post > img{
  margin: center;
}