@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}
li{
padding: 5px;
}
.nav-link
{
  color: red;
}
.dropdown-item {
  height: 50px;
  border-bottom: 1px solid #bebdbd;
  background-color: red;
  color: antiquewhite;
}

.nav-item :hover {
  background-color: red;
  color: white; 
}
.dropdown-item:hover {
  background-color: antiquewhite;
  color: red;
}
.img-fluid
{
  width: 300px;
  height:300px;
}


  #img1
  {
    border: 8px solid white;
    box-shadow: 0 0 10px gray;
  }
  #img2
  {
    width: 100px;
    height: 100px;
  }
    

  #image-container img {
    transform-style: preserve-3d;
    animation: rotate-front-back 5s linear infinite;    
  }
  @keyframes rotate-front-back {
    0%, 100% {
      transform: rotateY(0deg);
    }
    50% {
      transform: rotateY(180deg);
    }
  }
  #main {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
  }
 
  .rounded
  {
    width:100px;
    height:100px;
  }
  .card-img-top
  {
   height: 250px;
  }  

#slideshow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  z-index: 1000;
}

#slideImage {
  max-height: 80vh;
  max-width: 80vw;
  margin-top: 5%;
}


#imageDetails {
  color: white;
  margin-top: 1%;
}

#prev,
#next {
  font-size: 2em;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
}

#prev {
  left: 16px;
}

#next {
  right: 16px;
}

#closeButton {
  position: absolute;
  top: 10%;
  right: 16px;
   cursor: pointer;
}

#closeButton img {
  width: 30px;
  height: 30px;
}
.img-thumbnail
{
  border: none;
  margin: 10px;
}
.thumbnail {
  position: relative;
  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.thumbnail:hover img {
  transform: scale(1.1);
}

.thumbnail .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.thumbnail:hover .overlay {
  opacity: 1;
}

.thumbnail .overlay a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  background-color: red;
  border-radius: 5px;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.thumbnail:hover .overlay a {
  opacity: 1;
}
#icon
{
  width:50px;
  height: 50px;
}


@media screen and (max-width: 600px) {
  .nav-link
{
  background-color:rgb(165, 30, 127);
  color: white;
  text-align: center;
}
#slideImage {
    margin-top: 30%;
    width: 100%;
    height: 300px;
}
#closeButton {
  position: absolute;
  top: 17%;
}
#icon
{
  width:50px;
  height: 50px;
  margin-top: 30px;
}
}
@media screen and (min-width: 600px) and (max-width: 768px){
  .nav-link
{
  background-color:rgb(14, 100, 33);
  color: white;
  text-align: center;
}
#slideImage {
  margin-top: 20%;
  width: 100%;
  height: 300px;
}
#closeButton {
  position: absolute;
  top: 17%;
}
}
@media screen and (min-width: 768px) and (max-width: 922px) {
  .nav-link
{
  background-color:rgb(78, 27, 219);
  color: white;
  text-align: center;
}
#slideImage {
  margin-top: 20%;
  width: 100%;
  height: 300px;
}
#closeButton {
  position: absolute;
  top: 17%;
}
}
@media screen and (min-width: 922px) and (max-width: 1024px){
  .nav-link
{
  background-color:red;
  color: white;
  text-align: center;
}
#slideImage {
  margin-top: 20%;
  width: 100%;
  height: 300px;
}
#closeButton {
  position: absolute;
  top: 17%;
}
}
