html,body{
    margin:0;
}

body{
    font-family: "Google Sans Code", monospace;
    width: 100%;
    height:100vh;
    background-color: black;
    overflow-x:hidden;
    -ms-overflow-style: none; 
    scrollbar-width: 0px; 
}
body::-webkit-scrollbar {
  display: none;
}
ul{list-style-type: none;}
.bar{
    background-color: #6b5e72;
    border: #6b5e72 solid 1px;
    display:flex;
    justify-content: center;
    gap: 12rem;
    margin: 0;
    padding: 0;
    width:99.9vw;
    height:3%;
}
.navLinks{
    
    display: flex;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    flex:1;
    transition: transform 0.15s ease, color 0.15s ease;
    padding-top:6.7%
}

.navLinks:hover{
    color:#abeaab;
    transform: scale(1.15) rotate(-5deg);
    text-decoration: underline;
}
.background{
    background-color:black;
    width:100%;
    height:100%;

}

.main{
    background-color: black;

}
.container{
    display:flex;
    align-items: center;
    float:left;
    gap:12px;
    margin-top:10px;
    flex-wrap: wrap;
    position:relative;
}
.content{
    min-width:225px;
    max-width:225px;
    max-height: 225px;
    min-height: 225px;
    border: 2px #6b5e72 solid;
    border-radius: 10px;
    padding:6px;
    margin-left:6px;
    color:white;
    transition: box-shadow 0.3s linear

}
.content:hover{
    box-shadow: 0px 0px 25px 10px rgb(171, 234, 171, 0.2);
}
.content::shadow{
   z-index: -1
}

.content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.content *{
    padding:0;
    margin: 0;
    color:white;
    text-decoration: none;
    text-align: center;
    position:relative;

}
.content .links{
	display:flex;
	position:absolute;
	flex:wrap;
	justify-content:center;
	bottom:0px;
}

.content .links .link{
    position:relative;
    transition: transform 0.15s ease;
    color:#6b5e72;
    bottom:5px;
    padding-left: 7px
}
.content .links .link:hover{
    color:#abeaab;
    transform: scale(1.15) rotate(-5deg);
}

.content .title{
	
}
