body {
  margin: 0;
  font-family: "Comic Sans MS", "Courier New", cursive;
  background: url("images/bg.gif");
  background-repeat: repeat;
  color: #00ff00;
  cursor: crosshair;
}

/* PAGE */
.page {
  display: flex;
  min-height: 100vh;
}

.hero {
  width: 100%;
  height: auto;
  max-height: 600px;
}

.hello {
 margin-left: 2px;
}

.monthly-box {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 4px;
}

.monthly-box h3 {
  margin: -10px -10px 4px -10px;
}

.monthly-img {
  display: block;
  margin: -10px -10px 4px -10px;
}

.monthly-name {
  margin-top: -50px;
  font-size: 28px;
  font-weight: bold;
  font-family: 'Baloo 2', cursive;
  line-height: 1.1;
}

/* SIDEBAR LEFT */
.sidebar-left {
  width: 250px;
  background: #000080;
  padding: 10px;
  border-right: 4px ridge #ff00ff;
  position: fixed;
  height: 100vh;
}

/* PROFILE */
.profile img {
  width: 100%;
  margin-top:30px;
}

.profile p {
  font-size: 12px;
  color: #ffff00;
}

/* NAV */
.nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav a {
  display: block;
  background: linear-gradient(to right, #ff0000, #ff00ff);
  color: #fff;
  text-decoration: none;
  padding: 5px;
  border: 2px outset #fff;
  font-weight: bold;
  text-align: center;
}

.nav a:hover {
  background: #00ffff;
  color: #000;
}

/* BOXES */
.sidebar-left .box,
.sidebar-right .box,
.card {
  background: #000;
  padding: 10px;
  margin-bottom: 15px;
  border: 3px groove #00ff00;
  position: relative;
}


/* TITLE BAR EFFECT */
.box h3,
.card h1,
.card h2 {
  background: linear-gradient(to right, #0000ff, #00ffff);
  color: #fff;
  padding: 3px;
  margin: -10px -10px 10px -10px;
  font-size: 14px;
  border-bottom: 2px solid #fff;
}

.box a,
.card a {
  color: #00ff00;
  text-decoration: none;
}

.box a:hover,
.box a:visited,
.card a:hover,
.card a:visited {
  color: #00ff00;
  text-decoration: none;
}


/* LEFT ALIEN */
.sidebar-left .left-alien {
  margin-left: 120px;
}

/* RIGHT SIDEBAR */
.sidebar-right {
  width: 250px;
  background: #000080;
  padding: 10px;
  border-left: 4px ridge #ff00ff;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
}

/* CONTENT */
.content {
  margin-left: 270px;
  margin-right: 270px;
  padding: 20px;
  background-color: #404040;
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3Ehoundstooth%3C/title%3E%3Cg fill='%232400e0' fill-opacity='0.24' fill-rule='evenodd'%3E%3Cpath d='M0 18h6l6-6v6h6l-6 6H0M24 18v6h-6M24 0l-6 6h-6l6-6M12 0v6L0 18v-6l6-6H0V0'/%3E%3C/g%3E%3C/svg%3E");
}

/* CARDS */
.card {
  background: #000;
  border: 3px ridge #ff0000;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery img {
  width: 100%;
}

.cone {
  float: right;
  margin-left: 10px;
  width: 300px;
  }

/* BLINK EFFECT */
.blink {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

/* MARQUEE STYLE */
.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  color: #ff00ff;
}

.marquee span {
  display: inline-block;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 900px) {

 #menu-toggle {
  display: block;
  position: fixed; 
  top: 2px;
  left: 200px;
  z-index: 2000;
  background: #ff00ff;
  color: #000;
  border: 3px outset #fff;
  padding: 8px 12px;
  font-weight: bold;
  cursor: pointer;
}

  .sidebar-left {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 250px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .sidebar-right {
    display: none;
  }

  .content {
    margin: 0;
    padding: 60px 20px 20px 20px;
    min-width: 100%;
  }

  .page {
    display: block;
  }
}

.overview {
  max-height: 150px;
  float: right;
  margin-left: 20px;
  }
  
  .read {
  display: inline-block;
  padding: 10px 16px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

#menu-toggle {
  display: block;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: #ff00ff;
  color: #000;
  border: 3px outset #fff;
  padding: 8px 12px;
  font-weight: bold;
  cursor: pointer;
}

/* MOBILE SIDEBAR STATE */
.sidebar-left.mobile-hidden {
  transform: translateX(-100%);
}

.sidebar-left.mobile-visible {
  transform: translateX(0);
}