.containermovie{
  margin:0 auto;
  max-width:1200px;
  padding:0 0rem;
}
.responsive-image{
  max-width:100%;
}
.cellmovie img{
  display:block;
}

@media screen and (min-width: 600px) {
  .gridmovie{
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    margin: 0rem;
  }
  .cellmovie{
    width:calc(100% - 0rem);
  }
}
@media screen and (min-width: 1000px) {
  .cellmovie{
    width:calc(100%/2 - 2rem);
    margin: 1rem;
  }
}

        @media only screen and (min-width:500px) {
            .hidelogo-on-desktop, * [aria-labelledby='hide-on-desktop'] {
                display: none;
                max-height: 0;
                overflow: hidden;
            }
        }
                @media only screen and (max-width:499px) {
            .hidelogo-on-mobile, * [aria-labelledby='hide-on-mobile'] {
                display: none;
                max-height: 0;
                overflow: hidden;
            }
        }

.alert {
  padding: 20px;
  background-color: rgb(17, 146, 197);
  color: white;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}
/* Thick green border */
hr.new4 {
  border: 1px solid rgb(10, 150, 5);
}
.watchbutton {
  border-radius: 4px;
  background-color: rgb(17, 146, 197);
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.watchbutton span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.watchbutton span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.watchbutton:hover span {
  padding-right: 25px;
}

.watchbutton:hover span:after {
  opacity: 1;
  right: 0;
}