
*{
    margin: 0;
    padding: 0;
    font-family:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(250, 250, 250, 0.841),rgba(58, 58, 58, 0.7)),url(./images/desktop-1600x900.jpg);
    background-position: center;
    background-size:cover;
    background-repeat: repeat;
}
header{
    flex: 2;

    height: 200px;
    
    text-align: center;
    margin: auto;
    padding: 6px;


      border-radius: 50px;
      
      background: rgb(88, 142, 224);
      padding: 30px;
      background-image: linear-gradient(rgba(248, 248, 248, 0.7),rgba(237, 220, 69, 0.7)),url(./images/Lighthouse.webp);
      background-size: cover;
      background-position: center;

}
h1{
    color: white;
    font-size: 200px;
}
nav{
  overflow: hidden;
  background-color: rgb(231, 178, 33);
  height: auto;
}


.navbar{
    display: flex;
    height: 5%;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s;
}
.navbar:hover{
    transform: translateY(-10px);
}
nav{
      flex: 2;
      text-align: center;
      margin: auto;     

}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 60px;
}
nav ul a{
    font-optical-sizing: 20px;
    color: white;
    font-size: 26px;
    font-weight: bold;
    text-align: center;

}
h2{
    color: white;
    font-size: 80px;
}
p{
    color: white;
    font-size: 28px;
   
}
h5{
    color: white;
    font-size: 30px;

}
h6{
    font-size: 70px;

}
.row{
    flex: 2;
    padding-bottom: 40px;
    
}
.col{
    flex: 2;
    padding-top: 60px;
    padding-bottom: 40px;
   
}


.moviecard{
    background-image: url(./images/5dfaedf9bad0edd45f04488164e212dd.jpg);
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 400px;
    display: inline-flex;
    border-radius: 20px 15px;
    padding: 10px ;
    cursor: pointer;
    margin-left: 20px;
    margin-bottom: 40px;
    flex-direction: column;
   position: relative;
   transition: transform 1500ms;
}
 
.moviecard:hover{
    cursor: pointer;
    transform: rotateY(180deg);
}

   
.moviecard1{

    background-image: url(./images/Darjeeling\ poster.jpg);
}


.moviecard2{
    background-image: url(./images/royal\ ten\ poster.jpg);
}
.moviecard3{
    background-image: url(./images/fantastic\ fox\ poster.jpg);
}
.moviecard4{
    background-image: url(./images/gran\ budapest\ poster.jpg);
}
.moviecard5{
    background-image: url(./images/movie\ add\ png.png);
}

table,
th,
td {
    border-collapse: separate;
    border-radius: 20px;
    padding: 20px;
    background-color: rgb(243, 236, 240);
    background-position: center;
    background-size:contain;
}

table {
    width: 100%;
    border: 30px solid rgb(231, 80, 145);
    border-style:double;
}
th {
    font-weight: bold;
    border: 3px solid black;
    font-size: 40px;
    background-color: grey;
    

}
td {
    border: 3px solid black;
    font-size: 27px;

}
div.tabletitle{
    color: white;
    font-size: 80px;
    text-align: center;
    border-radius: 3px;
    border: 10px solid rgb(193, 112, 236);
    border-style: ridge;
    padding: 20px;
}

.btncontainer{
    margin: auto;
    text-align: center;
    justify-content: center;
    size: 30px;
    padding: 25px;
  


}
.btn{
    margin: auto;
    text-align: center;
    justify-content: center;
    size: 30px;
    font-size: 40px;
    color: lightcoral;
    background-color: lightblue;
    font-weight: bold;

}
.button{
    font-size: 15px;
    background-color: lightblue;
    color: red;
}

form{
    border-color: brown;
    background-image: linear-gradient(rgba(250, 250, 250, 0.841),rgba(58, 58, 58, 0.7)),url(./images/pink\ budapest\ hotel.jpg);
    border: 10px solid rgb(233, 159, 63);
    justify-content: center;
    max-width: auto;
	padding: 20px 12px 10px 20px;
    font-weight: bold;
	font-style: italic;
	border-bottom: 10px solid #ddd;
	margin-bottom: 20px;
	font-size: 30px;
	padding-bottom: 3px;
    box-sizing: border-box;

}
input{
    font-weight: bold;

}

textarea{
    width: 100%;

}

input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
  }
 

  input[type=submit] {
  margin: 10px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

input[type=submit] {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

input[type=submit] {
  transform: scale(0.95);
}
  

@media (max-width: 600px) {
    /* adjust the layout here */
    .row {
      flex-direction: column;
    }
    .col {
      width: 100%;
      margin-bottom: 1rem;
    }
  }