/* styles.css */

html {
  height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100%;
    max-height: 1500px;
    min-height: 900px;
    display: flex;

}

.banner {
  font-size: 50px;
  font-style: italic;
}
  
header {
  color: white;
  padding: 1rem;
  text-align: center;
  }

  
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: azure;
  margin: 6px 0;
  transition: 0.4s; 
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.container {
  padding-left: 5%;
  padding-top: 5%;
  padding-bottom: 5%;
  position:fixed;
}

.hidden {
  display: none;
}

.hidden {
  display: none;
}

.nav-links{
  padding-right: 0;
  padding-left: 5%;
  margin-right: 0;
  margin-top: 8%;
  position: fixed;
  flex-direction: column;
  display: flex;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-links a{
  padding-top: 20px;
  font-size: large;
}

a{
  color: azure;
  text-decoration: none;
  
}

a:visited{
  color: azure;
}

.footer {
  clear:both;
  position: relative;
  bottom: 0;
  margin: auto;
  width: 300px;

}

.footer p{
  color: white;
  text-align: center;

}

html {
  background-color: black;
}

.content {
  color: white;
  text-align: center;
  margin-top: 5vh;
  margin-bottom: 5%;
}

.about_content {
  color: white;
  text-align: center;
  margin-top: 5vh;
}

.main_feed{
  color: white;
  text-align: center;
  margin-left: 15%;
  margin-right: 15%;
}


img {
  width: 45%;
  height: 45%;
  display: block;
  margin: 1rem auto;
}

#front_page_image{
width: 30%;
height: 30%;
}

.joke_box {
  border: 2px solid white;
  padding: 10px;
  margin-bottom: 10px;
}
