@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    background-color: rgb(21, 21, 21);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: lighter ;
    font-style: normal;
    
    color: white;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    
}
.topbar{
    
    padding: 0;
    height: auto;
    border-radius: 5px;
    display: flex;
    width: 100%;
    font-weight:0;

    
    
}

.topbarLeft {
    flex: 1;
    margin-left: 10px;

    
}
.topbarRight {
    margin-right: 10px;
}

.content{
    position: relative;
    display: flex;
}

div.page {
    width: auto;
    padding-top: 10px;
    position: relative;
    
}   

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%),1fr));
    gap: 10px;
}

.card {
    height: 400px;
    width: auto;
    background-color: #444444;
    overflow: hidden;
    border-radius: 5px;
    
}

.card img {
    height: 100%;
    width: 100%;
    object-fit:cover;
    
}

.buttom {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin: 20px;
    margin-top: 30px;
    position: absolute;

}

/* content page styling  */
.navTitle {
    display: flex;
    
}
.navTitle h3 {
    position: flex;
    margin: 0px;
    
  
    
}
 .backButtom img{ /* back buttom */
    position: relative;
    width: 35px;
    padding-right: 10px;
}
.pageContent {
    background-color: #1b1b1b;
    margin-top: 20px;
    border-radius: 5px;
    padding: 10px;
}
.pageContent img { 
    width: 100%;
    border-radius: 5px;

}
.pageContent video {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}








/* ////////////// Slideshow /////////////// */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.664);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* ////////////// Slideshow /////////////// */