.layout {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  min-height: 100vh;
}

.left, .right, .middle {
  background: transparent;
}

.left {
  /* your future index/nav */
}

.right {
  /* your misc stuff */
}

.middle {
  padding: 10px;
}

  body {
  font-family: 'Source Code Pro', monospace;
}

  
  .blinkie-container {
    overflow: shown;
    white-space: nowrap;
    background: transparent;
    padding: 10px 0;
  }
  
  .blinkie-scroll {
    display: inline-block;
    animation: scroll 10s linear infinite;
  }
  
  .blinkie-scroll img {
    height: 31px;
    margin: 0 5px;
    vertical-align: middle;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }  
    100% { transform: translateX(-50%); }
  }
  
   .container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .sidebar {
    width: 220px;
  }
  
  .main-content {
    flex: 1;
  }
  
  .box {
    background-color: rgba(122,122,122,0.5);
    border: 3px solid #112;
    border-radius: 15px;
    padding: 3px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
  }

  .feeling-box {
    background-color: rgba(200, 200, 255, 0.5);
    border: 3px solid #112;
    border-radius: 15px;
    padding: 3px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
  }
  
  .box-title {
    background-color: white;
    border: 2px solid black;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .box-content {
    color: white;
  }
  
  .navbar {
    /* Use the same centered, max-width container as the content */
    max-width: 1200px;
    margin: 20px auto; /* Add some margin top and bottom for spacing */
    
    /* Apply the main box styling */
    background-color: rgba(122,122,122,0.5);
    border: 3px solid #112;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
    
    /* Use flexbox to lay out the links horizontally */
    display: flex;
    justify-content: space-around; /* Distributes links evenly */
    padding: 10px 0;
}

.navbar a {
    /* Style the links */
    font-weight: bold;
    color: white; /* White text to match .box-content */
    text-decoration: none; /* Remove the default underline */
    padding: 5px 15px; /* Add some padding around text */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    border-radius: 10px;
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Subtle hover background */
    color: #000; /* Change text color on hover */
}
