
body {
  background: antiquewhite;
  font-size: 0.875em;
  font-size: 11px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 0;
  margin: 0;
  background-image: url(bg2.jpg);
  }
  
  
.wrapper {
  background: none;
  top: 0;
  margin: 0 auto;
  width: 888px;
  position: relative;
  }
  .main, .sidebar-right {
    display: inline-flex;
    flex-direction: column;
    }
   
  
  .sidebar-left, .sidebar-right {
    
    width: 250px;
    position: absolute;
    top: 0;
    }
  
    .sidebar-left {
      display: flex;
      flex-direction: column; /* Stacks items vertically */
      gap: 30px; /* Adds 20px space between each flex item (section) */
      margin-left: -100px;
      margin-top: 177px;
      
      }
      audio {
        max-width: 100%;
      
    }

     
.main {
  width: 500px;
  margin-left: 185px;
  margin-top: 30px;
  gap: 30px;
  }
  
    .sidebar-right {
      display: inline-flex;
      flex-direction: column;
      gap: 30px;
      margin-right: 100px;
      margin-left: 36px;
      margin-top: 177px;
      max-width: 100%;
      }
      img {
        max-width: 100%;
      
    }

  
  
.wrapper, .links a {
  color: #4f3d46;
  }
  
.box {
  border: 3px double #333;
  background: rgba(250, 235, 215, 0.93);
  padding: 0;
  flex-wrap: wrap;
  border-radius: 10px;
  }
  
.header {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  background: none;
  text-align: right;

  
  }
  
.links {
  margin-top: 1em;
  margin-top: 1em;
    }
    .menu ul {
        list-style-type: none;
        text-align: center;
        background-color: rgb(208, 146, 146);
        overflow: hidden;
        border-radius: 10px;
        border: 3px orangered;
        box-sizing: content-box;
        box-shadow: 1px 1px 5px rgb(23, 23, 23);
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        font-size: small;
        width: 100%;
        padding: 10px;
        justify-content: space-between;
        justify-content: space-evenly;
        
    
    }
    .menu a {
        text-align: center;
        color: antiquewhite;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 10px;
        border-radius: 10px;
        border-color: orangered;
        border: 3px orangered;
        flex: 1;
        transition: transform 0.3s;
        
    }
    .menu a:hover{
    background-color: rgba(220, 20, 60, 0.581);
    transform: scale(1.2);
    }
    .menu li{
        float: center;
    }

  
.title { /*suppress title, since we're putting the title as text in the header box*/
  display: none;
  }

.footer {
  height: 0;
  }
  
.box h1, .box h2, .box h3, .box h4 {
  display: block;
  background: rgba(128, 128, 0, 0.884);
  margin: 0;
  padding: 0.35em 0.25em 0.3em 0.25em;
  text-align: center;
  border-bottom: 3px double #333;
  font-size: 17px;
  }
  
.inner {
  padding: 0.25em 1em 0.3em 1em;
  font-size: 1.075em;
  }
  /*Div style for individual links.*/
.link {
  text-align: center;
  display: inline-block;
  list-style-type: none;
  float: none;
  font-weight: bold;
  font-size: 1.16em;
  padding: 5px;
  margin-right: 10px;
  margin-left: 10px;
  border: 0px solid red;
  }
  
.link a {
  color: white;
  text-decoration: none;
  }

/* For narrow screens: slightly narrows sidebars, and makes the width
 * of the main/center div flexible (sized relative to viewport width.)
 */
 @media(max-width:888px) {
  .wrapper {
    width: calc(340px + 50vw);
    }
  .sidebar-left, .sidebar-right {
    width: 160px;
    }
  .main {
    width: 50vw;
    margin-left: 170px;
    }
  }

/*Mobile compatibility. Just turns it all into a vertical layout.*/  
@media(orientation:portrait) {
  .wrapper {
    width: 96vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  .wrapper-2 {
    width: 94vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  .sidebar-left, .main, .sidebar-right {
    position: relative;
    width: 92vw;
    margin: 0.25rem 1vw;
    }
  }
  
