body {
  background-image: url('https://i.imgur.com/LIYwNxl.gif')
}

container {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 750px;
  background-color: #5a5a63;
  border: 3px black solid;
}

.header {
  margin: 0;
  font-weight: normal;
  height: 100px;
  display: flex;
  justify-content: space-around;
  background-image: url('https://rockseize.neocities.org/image/37f4b27e3e0c73d4969d1aa2ba359fd9.jpg');
  border: 1px solid black;
}

.now {
  font-style: italic;
  color: #2d1fc4;
  font-size: 30px;
  font-weight: bold;
}  

.tags {
  margin-top: 49px;
}

.tagline {
  margin-top: 40px;
  font-size: 20px;
  padding-top: 40px;
  font-style: italic;
}  

.flex {
  display: flex;
}

nav {
  display: flex;
  margin: 8px;
  justify-content: space-evenly;
}

.navLink {
 font-weight: bold;
 text-decoration: underline;
}

.navLink:hover {
 font-style: italic; 
}

#bottom {
  padding: 10px;
  border: 1px black solid;
}

.forumLink {
  font-weight: bold;
  text-decoration: underline;
  color: #2d2c33;
}

.forumLink:hover {
 font-style: italic; 
}

#bottomer {
  display: flex;
  justify-content: space-evenly;
  height: 315px;
}

.button {
  font-size: 18px;
  font-weight: bold;
  background-color: #271aba;
  border: 1px solid #271aba;
  border-radius: 5px;
  padding-left: 3px;
  padding-right: 3px;
  color: white;
  display: inline-block;
  margin: 5px;
  margin-top: 10px;
  transition: 0.3s;
}

.button:hover {
  background-color: #2216a8;
  font-style: italic;
}

.reset {
 font-size: 12px;
 font-style: italic 
}


#login p {
  margin-top: 5px;
  width: 100%
}

#adOne {
 width: 200px;
}

#message {
  width: 450px;
  margin: 5px;
  overflow: auto;
}

#adTwo {
 width: 150px;
 overflow: hidden;
}  

.scroll {
 height: 315px;
 overflow-x: hidden;
 overflow-y: scroll;
}

.user {
  font-weight: bold;
  font-size: 16px;
}

.ithornet {
  font-family: 'Ithorn';
  font-size: 55px;
}

.mobile {
  display: none;
  margin-right: 0;
  margin-left: 0;
  border: 2px solid black;
}

@media (max-width: 800px) {
  container {
   width: 80%; 
  }
  
  #bottomer {
   flex-direction: column; 
   height: auto;
  }
  
  #adOne, #message, #adTwo {
    width: 100%; 
  }
  
  .mobile {
    display: block;
  }  
  
  .header {
    flex-direction: column;
    padding: 18px;
  }  
  
  .tags, .tagline {
    margin: 0;
    padding: 0;
  }  
}