.picture {
  height: 270px;
  background-image: url('../../img');
}

body {
  background-image: url('../../img/cinema-room-header.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-origin: border-box;
}

.nav-bar a.active {
  border-bottom:  solid 2px rgb(50, 156, 57);

  position: relative;
}

.nav-bar a.active::after{
  border-color: transparent transparent rgb(50, 156, 57) transparent; /* Couleur du triangle */
}

.draw-home-layout {
  /* padding-top: 40px; */
  background-color: white;
}

.draw-home-layout h2{
  font-family: Verdana;
  font-size: 20px;
}

.draw-home-layout p {
  padding-top: 10px;
  font-size: 2rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.type-menu-layout {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: white;
}

.typeart {
    font-size: 50px;
    color:rgb(0, 0, 0);
    font-family: Verdana;
    letter-spacing: 5px;
}

.menu-pictures {
  padding-top: 60px;
}

.card {
  box-shadow: 0 0.2rem 1.2rem rgba(0,0,0,0.2);
  background-color: #fff;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}

.card img {
  /* object-fit: fill; */
  object-fit: cover;
  width: 100%;
  height: 400px;

  /*Faire truc pour hover off ici*/
  transition: transform 0.5s;
  transform: scale(1);
}

.card:hover img {
  transition: transform 0.5s;
  transform: scale(1.05);
  cursor: pointer;
}

.text-child {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: white;
  font-family:Verdana;
  letter-spacing: 5px;
}

#draw-home-layout {

  background-color: rgb(227, 231, 232);
}

.title-overview h1{
  font-size: 5rem;
  color:rgb(46, 46, 46);
  font-family: Verdana;
  letter-spacing: 13px;
  padding-top: 30px;
  text-align: center;
}

/* useless ? */
#transparency {
  height: 200px;
  background-color: rgb(0,0,0,0);
}

.scroll-box {
  padding-left: 100px; padding-right: 100px; padding-bottom: 60px;
}

 .scroll-container{
  overflow: auto;
  white-space: nowrap;
  padding: 5px 70px 5px 20px;
  /* background: transparent; */
  height: 100%;

}

.gridscroll{
  display:inline-block;
}

.gridscroll img {
  /* margin-right: 22px; */
  margin: 30px;
  vertical-align: middle;
  height: 400px;
  width: auto;

  /*Faire truc pour hover off ici*/
  transition: transform 0.5s;
  transform: scale(1);
} 

.gridscroll img:hover {
  cursor: pointer;
  transition: transform 0.5s;
  transform: scale(1.05);
}

@media screen and (max-width: 700px) { 
  .scroll-box {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .gridscroll img {
    height: 300px;
  }

  .typeart {
    font-size: 30px;
  }

  .title-overview h1{
    font-size: 30px;
  }
}






