/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-family: consolas
}

summary{
  /* font-weight: bold; */
  /* font-size: 18px; */
  /* margin-bottom: 10px; */
  cursor: pointer;
  text-align: center; 
}




#profile-picture{
  width: 160px;
  height:auto;
  border: 2px solid blue;
  padding: 3px;
  float: left;
  margin-right: 15px;
}

.flex-container {
  display : flex;
  flex-wrap: wrap;
  gap : 15px;
  margin-bottom: 25px;
}
.flex-container img{
  max-height: 200px;
  /* width: auto; */
  min-width: 0;
}

#monogrid img{
  cursor : pointer;
}

.content {
  box-sizing: border-box;
  width: 700px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 15px;
  background-color: rgb(255, 255, 255);
  border: 2px solid #000000;
}
.content p{
  margin-top: 0;
  margin-bottom: 10px;
}

.content video{
  max-width:100%;
  height:auto;
  max-height: 400px;
  /* margin :0 auto; */
}

.navbar {
  position : sticky;
  top : 0;
  width: 700px;
  margin: 20px auto;
  border: 1px solid black;
  font-weight: bold;
  /* font-family: Roboto  */
}
.navbar ul{
  padding:0;
  margin:0;
  display: flex;
  list-style: none;
}
.navbar li{
  flex-grow:1;
  border: 1px solid black;
  text-align: center;
  background-color: white;
}
.navbar a{
  display: block;
  padding: 10px;
  text-decoration: none;
  color:black;
}
.navbar li:hover{
  background-color: rgb(13, 0, 255);
}
.navbar a:hover{
  color: white;
}
.navbar #current{
  background-color: rgb(13, 0, 255);
}
.navbar #current a{
  color: white;
}

.icon-list{
  list-style: none;
  display: flex;
  padding:0;
  margin:0;
  gap:15px;
}
.icon-list img{
  max-width:50px;
  max-height:60px;
}


.poster-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
}

.poster-grid img{
  width: 100%;
  margin : 0 auto;
  display: block;
  cursor: pointer;
}

#lightbox{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox-image{
  max-width: 90%;
  max-height: 90%;
}