body{
    background-image: url('https://y3llowradish.neocities.org/hackerbackground.jpg');
    background-color: #2a3028;
    font-family: 'Share Tech Mono', sans-serif;
  }
  
  p{
    letter-spacing: 1px;
  }

   h2{
    color: rgb(212,194,121);
  }

  h3{
    color: rgb(102, 106, 72);
    text-align: center;
    font-size: 25px;
    grid-row: 2 / 2;
    margin-bottom:10px;
    margin-top:10px;
  }


  .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create two equal columns that sits next to each other */
  .column {
    flex: 50%;
    padding: 0 4px;
    /* border:5px solid #2196F3; */
  }
  .column .centerimg{
    text-align: center;
  }


  .textbox{
    border-radius: 50px;
    text-align: center;
    background-color:  #2a3028;
    min-height: 400px;
    margin-left:100px;
    margin-right:100px;
    padding: 5px 15px 15px 15px;
  }

  
  .column img {
    margin-top:15px;
    vertical-align: middle;
    min-width:500px;
    max-width:800px;
    min-height:400px;
    max-height:400px;
    /* width:300px;
    height:300px; */
  }
  .column video {
    margin-top:15px;
    vertical-align: middle;
    min-width:200px;
    max-width:800px;
    min-height:200px;
    max-height:400px;
    /* width:300px;
    height:300px; */
  }

  .item:hover{
    box-shadow: 0px 0px 5px #78beff;
  }

  .titlecaption{
    text-align: center;
    color: #070806;
    font-size: 25px;
    text-align:left;
    grid-row: 2 / 2;
    margin-bottom:10px;
    margin-top:10px;
  }

  .caption{
    text-align: center;
    color:  rgb(212,194,121);
    font-size: 25px;
    grid-row: 2 / 2;
    margin-bottom:10px;
    margin-top:10px;
  }

  .caption .description{
    font-size: 25px;
  }

  #main{
    display:inline-block;
    overflow-y: auto;
    overflow-x: auto;
    border-radius:15px;
  }
  
  .mainboxes{
    position: flex;
    justify-content: center;
    align-items: center;
    width:1320px; 
    margin-top:-110px;
    border-radius:15px;
    height:auto;
  }


  #box{
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: #1f231d;
    border-radius:15px;
    padding:10px;   
    margin:10px;                                                                    
  }

  /* #imgcontainer{
    margin-top:60px;
  } */
  
  #header{
    position:absolute;
    right:60px;
    top:50px;
    color:  rgb(212,194,121);
    letter-spacing: 10px;
    font-size: 25px;
    font-family: 'Gajraj One', sans-serif;
  }
  
  #header h1{
    margin: 0px;
    font-size: 50px;
  }
  
  #headerlist{
    display:flex;
    justify-content: left;
    align-items: left;
    margin-top: 20px;
    margin-bottom: 165px;
    margin-right: 50%;
    margin-left:50px;
  }
  
  .listitem {
    margin-right:50px;
    font-size:20px;
    color:#7179b1;
  }
  
  .listitem img{
    margin-left:100px;
    width:300px;
  }
  
  #footerlist{
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  #footerlist a{
    color: #7179b1;
  }
  
  a:link{
    text-decoration: none;
    display: block;
    color: #7179b1;;
  }
  
  a:visited{
    color:rgb(212,194,121);
    display: block
  }
  
  a:hover{
    text-shadow: 0px 0px 2px #78beff;
    display: block
  }
  
/* collapsible content ---------------------*/
.wrap-collabsible {
 display:grid;
 /* width:1300px; */
 /* width:100%; */
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
  font-size: 25px;
  text-align:left;
  float:left;
  padding: 1rem;
  background-color: #2a3028;
  color:#7179b1;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
  text-shadow: 0px 0px 2px #78beff;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  margin-right: .7rem;
  transform: translateY(-2px);
  transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  width:1300px;
  max-height: 0px;
  display:flex;
  overflow: auto;
  transition: max-height .25s ease-in-out;
  /* border:5px solid #2196F3; */
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: #4a5447;
  padding: .5rem 1rem;
  width:2000px;
  height:auto;
}
/* collapsible content ---------------------*/