/* 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: black;
  color: white;
  font-family: Arial;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ok_button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #f0c217;
  border-radius: 10px;
  color: black;
  height: 10vh;
  width: 15vw;
  font-size: 6vh;
}

h1 {
  text-align: center;
}

* {
  color: white
}

.disclaimer_box {
  align-items: center;
  text-align: center;
  display: block;
  margin-top: 5vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8vw;
}

.disclaimer{
  font-size: 5vw;
  align-items: center;
  vertical-align: middle;
  margin: 5%;
}



/* IMAGE GALLERY */

body {
    font-family: Arial, sans-serif;
}

.image-container {
    text-align: left;
    margin-left: 3vw;
}

.thumbnail {
    width: 150px; /* Adjust as needed */
    cursor: pointer; /* Changes cursor to hand */
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: 0.3s;
}

.thumbnail:hover {
    border-color: #777;
}

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

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    color: #ccc;
}







/*FOR THE PAGE CONTAINING BOTH IMAGES AND PROFILE*/
.gallery{
  float: right; 
  height: 100%; 
  width: 40%;
  z-index: 100; 
  position: fixed;
}

.profile{
}