@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
:root{
  --primary-color: #e9b349;
  --secondary-color: #e39f1c;
  --text-color: #222222;
}
* {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  
}
body{
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


nav{
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12vh;
  /* width: 100%; */
  
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  list-style: none;
  
}
.nav-links li {
  margin: 0 1rem;
}
nav a {  
  color: var(--text-color);
  line-height: 12vh;
  text-decoration: none;

}
nav a:hover {
  text-decoration: none;
  color:#696969;
}
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
}
main{
  flex: 1;
  padding: 2rem;
}
footer{
  background-color: var(--secondary-color);
  text-align: center;
  padding: 1rem;
  /* width: 100%; */
}


.text-center{
  text-align: center;
}

.content{
  display: flex;
  justify-content: space-between;
  gap:15rem;
  margin: 5rem 0;
}
.content > * {
  width: 100%;
}

.main-menu{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.main-menu >*{
  width: 100%;
}
.page-content{
  font-weight: 200;
  line-height: 3rem;
}
.title{
  background-color: var(--primary-color) !important;
}

@media (max-width: 767px) {
  .recent-posts {
    display: none;
  }
  .content{
    flex-direction: column;
  }
  


  nav{
    position: relative;
    
  }
 .hamburger{
    display: block;
    margin-left: auto;
    padding: 0.5rem;
  }
  .nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  
  display: flex;
  flex-direction: column;
  text-align: center;

  background-color: var(--secondary-color);

  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;

  z-index: 1000;
}

.nav-links.active {
  transform: scaleY(1);
}
}
