.login-div {
  background-color: black;
  height: 10px;
  width: 10px;
}

.flex {
  display: flex;
}

.center {
  justify-content: center;
}

.navbar {
    display: flex;
    column-gap: 40px;
}

.navbar a {
    padding: 30px;
    text-decoration: none;
    color: rgb(102, 102, 102);
    cursor: pointer;
}

.navbar a:hover {
    color: rgb(0, 0, 0);
    transition: 120ms;
}

.center-div {
  width: 100%;
  display: flex;
  justify-content: center;
  
} 

@media only screen and (max-width:700px) {
  .picture-holder {
    margin-left: 2.5%;
    margin-right: 2.5%;
    width: 95%;
    display: grid;
    grid-template-columns: auto auto;
    max-width: 1600px;
  }
}

@media only screen and (min-width: 701px) {
  .picture-holder {
    margin-left: 2.5%;
    margin-right: 2.5%;
    width: 95%;
    display: grid;
    grid-template-columns: auto auto auto;
    max-width: 1600px;
  }
}


.picture-div {
    cursor: pointer;
    width: 100%;
    aspect-ratio: 3/4;
}

.picture-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-here {
    margin: 30px;
    color: white;
    font-size: 18px;
    padding: 20px 40px;
    border: none;
    background-color: black;
    cursor: pointer;
}

.book-here:hover {
    background-color: rgb(97, 97, 97);
    transition: 150ms;
}

.carosel {
  position:fixed;
  background-color: rgba(255, 255, 255, 0.795);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0%;
  transition: 500ms;
  z-index: 999;
}

.carosel-picture-holder {
  display: flex;
  justify-content: center;
  max-width: 90%;
  position:relative;
  opacity: 0%;
  transition: 400ms;
  transition-timing-function: ease-in-out;
}

.carosel-description {
 position: absolute;
 background-color: rgba(0, 0, 0, 0.555);
 color: white;
 width: 100%;
 bottom: 0px;
 opacity: 0%;
 transition: 300ms;
}

.carosel-description p:first-of-type {
  font-weight: bold;
}

.carosel-description p {
  margin: 20px;
}

.carosel img {
  max-width: 100%;
}

.carosel-button {
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 20px;
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: 1px solid grey;
  border-radius: 0px;
  color: grey;
  font-size: 18px;
  z-index: 999;
}

.left-button {
  left: 20px;
  margin-top: 50vh;
}

.right-button {
  margin-top: 50vh;
}
.kedebideri-regular {
  font-family: "Kedebideri", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kedebideri-medium {
  font-family: "Kedebideri", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.kedebideri-semibold {
  font-family: "Kedebideri", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kedebideri-bold {
  font-family: "Kedebideri", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kedebideri-extrabold {
  font-family: "Kedebideri", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.kedebideri-black {
  font-family: "Kedebideri", sans-serif;
  font-weight: 900;
  font-style: normal;
}