body, html {
    font-family: "Roboto", sans-serif;
    margin: 0;
    min-height: 100vh;
    padding: 0;
    background: black;
    color: white;
  }
  
  h1 {
    font-weight: 900;
    font-style: italic;
  }
  
  p{
    margin:1px;
    color: white;
  }

  .entry{
    display:flex;
    flex-direction:column;
    align-items:baseline;
    justify-content:space-between;
    margin: 0%;
  }
  
  .background {
    background: url('/images/made-by-me/hobbies-background.png') no-repeat center center;
    background-size: cover;
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;  
    align-items: center;    
    justify-content: flex-start; 
    padding-top: 10vh;
    box-sizing: border-box;
  }
  
  
  .header {
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 1110px;
    height:625px;
    max-width: 90%;
    padding: 20px;
    align-items:baseline;
    justify-content: space-between;
    box-sizing: border-box;

  }
  
  .header a{
  color:white;
  text-decoration: none;
  font-weight:700;
  }
  
  .header h1{
  color: #ffffff;
  text-decoration: none;
  }
  
  .card {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 1110px;
    height:545px;
    max-width: 90%;
    /* */
    align-items:center;
  }

  .center-top{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;

  }

  .links ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    
  }


  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
  }

  .submenu {
    display: none;
    margin-top: 10px;
  }

  .submenu a{
    color:white;
    text-decoration:none;
  }

  .tabcontent {
    display: none;
    flex: 1; /* ensures tab fills available vertical space */
    width: 100%;
    padding-bottom:80px;
  }

  
  .tabcontent li{
    padding-bottom:30px;
  }
  .tabcontent a{
    padding-bottom:30px;
    text-decoration:none;
    color: #94a0a1;
  }

  .tabcontent img{
   border-style:solid;
   margin:10px;
   margin-left: 25%;
  }

  .tabcontent p{
    margin-bottom:30px;
   }
  

  .main-body {
    display: flex;
    align-items: stretch; /* makes children match height */
    width: 100%;
    height: 100%; /* lock the body height to the card */
  }

  .left {
    flex: 0 0 200px; /* fixed width for the left nav */
    max-width: 200px;
    padding: 1%;
    overflow-y: auto;
  }
  
  .right {
    flex: 1; /* take the rest of the space */
    min-width: 0; /* prevents flex overflow issues */
    height: 100%; /* always fills the card’s height */
    padding: 3%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
 
  /* width */
  ::-webkit-scrollbar {
    width: 20px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #000000;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-style:solid;
    border-width: 1px;
    border-color: white;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #252525;
  }
  
  .grow {
    transition: all 0.2s ease-in-out;
  }
  
  .grow:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    h1.centre {
      font-size: 250%;
      text-align: center;
    }
  
    .card-inner,
    .card-outer {
      flex-direction: column;
      width: 100%;
      padding: 10px;
      margin: 30px;
    }
  
    .header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: -20px; 
    }
  
  }
  
  
  