body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color:black;
    color: white;
    /* overflow: hidden; */
}
.container{
    margin: 0;
    padding: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-gap: 9px;
   /* overflow: auto; */
    
}
.container div {
    
    font-size: 1.5rem;
    border-radius: 1rem;
    
}
.header{
    background-color:#000000c1;
    grid-column: 1 / span 10;
    justify-items: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
   justify-content: space-between;
   position: sticky;
    top: 0;
    z-index: 10;
}
.sidebar {
    background-color: #171717;
    grid-column: 1 / span 2;
    grid-row: 2 / span 9;
    margin-right: 6px;
    margin-left: 6px;
    overflow: hidden;
    position: sticky;
    top: 0; /* Adjust this value if you want some space from the top */
  }
  
.main{
    background-color:#202020;
    grid-column: 3/ span 9;
    grid-row: 2 /span 9;
    margin-right:20px; 
  overflow-y: auto;
   
}
.search{
    width: 45rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: rgb(51, 49, 49);
    border: none;
    color: white;
   opacity: 0.5;
}
#signup{
    position: relative;
    left :-30px
}
.search:hover{
    opacity: 1;
}
#icon{
    opacity: 1;
    color: rgb(71, 222, 241);
    font-weight: 700;
}

.home{
width: 100%;
height:20%;
border-radius: 1rem;
background-color:#121111;
margin: 3px;
}
.topic-opt{
    width: 100%;
height:150px;
background-color:#121111;
margin: 3px;
}
.res-opt{
    width: 100%;
    height:150px;
    background-color:#121111;
    margin: 3px;
}
a{
    text-decoration: none;
    color: white;
    margin-left: 10px;
    font-size: small;
    opacity: 0.75;
}


a:hover{
    opacity: 1;
    font-size: 15px;
}
.sidebar i{
    padding-left: 10px;
}
.footer{
    position: absolute;
    font-size: 10px;
    bottom: 5px;
}
.footer:hover{
    text-decoration: underline;
}
.main {
    padding: 10px;
    display: flex;
    flex-wrap:wrap;
  }
  
  .meme {
    height: auto;
    width: 100%;
    background-color: #454343;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .title {
    font-size: 18px;
    margin-bottom: 10px;
    color:aliceblue;
    font-weight: 700;
  }
  
  .meme-img {
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 100%;
    height: auto;
  }
  .author{
    text-align: end;
    font-size: 18px;
    margin-top: 10px;
    color: bisque;
  }
  
  