:root {
  --background_light: rgb(50,51,46);
  --background_medium: rgb(45,46,40);
  --background_dark: rgb(40,41,35);
  overflow-y: auto;
  overflow-x: hidden;
}

.col-right {
  text-align: right;
  margin-right: 2%;
}

.col-left {
  align-content: left;
}

.row {
  width: 100vw;
}

.body {
  overflow: hidden;
}

.container {
  background-color: var(--background_dark);
  padding-bottom: 10vh;
}

.footer-copyright {
  color: white;
  font-size: 12px;
}

.navbar {
  color: white;
}

.navbar-header {
  font-size: x-large;
  margin-top: 1.5vh;
}

.modal {
  color: white;
}

@media (max-width:1400px) {
  .col-left {
    display: none;
  }

  .row {
    width: 50vw;
  }
}


@media (max-width:960px) {
  .navbar-header {
    font-size: 1px;
    display: none;
  }

  .col-right {
    margin-right: 10%;
  }

  .gallery {
    padding-top: 100px;
    margin: 10px 50px;
  }

  .gallery img {
    transition: 1s;
    padding: 15px;
    width: 100%!important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

::-webkit-scrollbar {
  border-radius: 0px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--background_dark); 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  background: var(--background_light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--background_medium);
}


.gallery {
  padding-top: 100px;
  margin: 10px 50px;
}

.gallery img {
  transition: 1s;
  padding: 15px;
  width: 200px;
  width: 20%;
  overflow-y: auto!important;

}

.galleryrandom {
  padding-top: 100px;
  margin: 10px 50px;
  position: relative;
  height: 90%;
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow-y: hidden!important;
}

.galleryrandom img {
  max-width: 90%;
  max-height: 80vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow-y: hidden!important;
}

.gallery img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}