*{
    font-family: sans-serif;
}
body{
    margin: 0;
    background-image: url(salle-cinema.jpg);
    background-size: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
}

header>nav{
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.logo{
    width: 130px;
}

.bgcol-yellow{
    background-color: rgb(255, 230, 0);
}
.yellowcol{
    color:  rgb(255, 230, 0);
}
.whitecol{
    color: white;
}

button{
    border: none;
    height: 40px;
    width: 8%;
    background-color:rgb(104, 45, 18);
    border-radius: 15px;
    min-width: fit-content;
}
.font-w{
    color: white;
}
.font-b{
    color: black;
}
a{
    text-decoration: none;
}
main{
    width: 80%;
    margin: 0 auto;
}
form{
    display: flex;
    flex-direction: column;
    width: 40%;
}
form>button{
    width: 30%;
}
input{
    margin: 4px 0;
    padding: 0;
}
.tablo{
    display: flex;
    justify-content: space-between;
    width: 60vw;
    background-color: rgb(158, 44, 16);
    padding: 30px;
    border-radius: 30px;
}

footer{
    background-color: rgb(255, 230, 0);
    display: flex;
    justify-content: space-around;
    margin-top: 10%;
}
li{
    list-style-type: none;
}
#foot{
    width: 100%;
}

main{
     display: flex;
     flex-wrap: wrap;
     
}
.msg{
    margin-top: 3%;

}

.ul{
    width: 20%;
}
ul>li>a{
    color:  rgb(255, 230, 0);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.padP{
    padding-left: 13%;
}

.indexp{
    color:  rgb(255, 230, 0);
    position: relative;
    left: 4%;
    padding-top: 3%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 20px;
    text-align: center;
}

.forum{
    flex-direction: column;
}

.flex{
    display: flex;
}

.poz{
    position: relative;
    top : 10%;
}


.poz1{
    position: relative;
    top : 20%;
    left: 5%;
    padding-right: 20%;
    padding-bottom: 50px;
}

.title{
    padding-bottom: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 200%;
    font-size: larger;
}
.title1{
    font-weight: bold;
    font-size: large;
}
td{
    width: 28%;
    height: fit-content;
}
th{
    width: 18%;
    text-align: left;
}
.mspad{
    text-align: right;
}
.font-s22{
    font-size: 22px;
}
.paginate{
    display: flex;
    justify-content: space-around;
    width: 7%;
    margin: 0 auto;
}
.numb{
    font-size: 20px;
    color:  rgb(255, 230, 0);
}

.trolong {
    overflow: hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
}
.trocourt{
    min-width: 200px;
}



      
      a {
        color: #000;
      }
      
      /* header */
      
      .header {
        background-color:  rgb(255, 230, 0);
        box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
        width: 100%;
        z-index: 3;
      }
      
      .header nav {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        background-color:  rgb(255, 230, 0);
      }
      
      .header nav a {
        display: block;
        padding: 20px 20px;
        border-right: 1px solid rgb(255, 230, 0);
        text-decoration: none;
      }
      
      .header nav a:hover,
      .header .menu-btn:hover {
        background-color:  rgb(255, 230, 0);
      }
      
      .header .logo {
        display: block;
        float: left;
        font-size: 2em;
        padding: 10px 20px;
        text-decoration: none;
      }
      
      /* menu */
      
      .header .menu {
        clear: both;
        max-height: 0;
        transition: max-height .2s ease-out;
      }
      
      /* menu icon */
      
      .header .menu-icon {
        cursor: pointer;
        display: inline-block;
        /* float: right; */
        padding: 28px 20px;
        position: relative;
        user-select: none;
      }
      
      .header .menu-icon .navicon {
        background: #333;
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
      }
      
      .header .menu-icon .navicon:before,
      .header .menu-icon .navicon:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
      }
      
      .header .menu-icon .navicon:before {
        top: 5px;
      }
      
      .header .menu-icon .navicon:after {
        top: -5px;
      }
      
      /* menu btn */
      
      .header .menu-btn {
        display: none;
      }
      
      .header .menu-btn:checked ~ .menu {
        max-height: 240px;
      }
      
      .header .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
      }
      
      .header .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
      }
      
      .header .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
      }
      
      .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
      .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
      }
      
      /* 48em = 768px */
      
      @media (min-width: 768px) {
        .header nav {
          float: left;
        }
        .header nav a {
          padding: 20px 30px;
        }
        .header .menu {
          clear: none;
          float: right;
          max-height: none;
        }
        .header .menu-icon {
          display: none;
        }

      }

      @media screen and (max-width: 768px) {
        header{
            display: flex;
            flex-direction: column;
        }
        header>nav{
            display: flex;
            flex-direction: column;
        }
        main{
            display: flex;
            flex-direction: column;
        }
        .mainOeuvres{
            display: flex;
            flex-direction: column;
        }
        .ul{
            width: auto;
        }
        .dis-none{
          display: none;
        }
        .fores{
          width: 240px;
          height: 70px;
        }
      }
      
