html {
  height: 100%;
}

body {
    background-color: #383838;
    min-height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

header{
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 0px;
}

h1 {
    font-family: 'Roboto';font-size: 16px;
    color: silver;
    text-align: center;
    font-weight: bold;
    text-shadow: 1.5px 1.5px black;
}

h3 {
    font-family: 'Roboto';font-size: 16px;
    color: silver;
    text-align: center;
    font-weight: bold;
    text-shadow: 1.5px 1.5px black;
    margin-top: 50px;
    margin-bottom: 50px;
}

p {
    text-align: center;
}

footer {
    position: absolute;
    right: 60;
    float: right;
    font-family: 'Roboto';font-size: 10px;
    color: silver;
    text-align: right;
    margin-top: 5;
}

th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid silver;
}

tr:hover {
    background-color:#f5f5f5;
}

.tableauResto {
    border-collapse: collapse;
    background-color: lightgrey ;
    width: 75%;
    position: relative;
    font-family: 'Roboto';font-size: 14px;
    color: black;
    margin-top: 15px;
}

.resto {
    font-family: 'Roboto';font-size: 16px;
    color: silver;
    text-align: center;
    font-weight: bold;
    text-shadow: 1.5px 1.5px black;
}

.vignetteResto {
    width: 20%;
    border-radius: 20%;
}

.gallery {
    margin: 10px 50px;
}

.gallery img {
    transition: 0.5s;
    padding: 15px;
    width: 250px;
    border-radius: 20px;
}

.gallery img:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
}

.button {
    background-color: dimgrey;
    border: none;
    color: white;
    padding: 1px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 12px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    position: relative;
    left: 50%; /* the left edge of the button is now in the center of the parent element. Now we need to nudge the button back to the left by 50% of the button width to make it center aligned. */
    transform: translateX(-50%);
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

.button:hover {
    background-color: darkgrey;
    color: white;
    text-decoration: none;

}

.buttonlock {
    background-image: url("http://nicolaslagarrigue.fr/images/lock.png");
    background-size: cover;
    background-position: center;
    display: inline-block;
    border: none;
    padding: 14px;
    width: 20px;
    height: 20px;
    margin-left : 10px;
    border-radius: 900px;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

.buttonlock:hover {
    background-color: darkgrey;
    color: white;
    text-decoration: none;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    float: center;
}

.hvrbox,
.hvrbox * {
    box-sizing: border-box;

}
.hvrbox {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 20px;

}
.hvrbox img {
    max-width: 300px;
    border-radius: 15px;

}

.hvrbox .hvrbox-layer_bottom {
    display: block;
}

.hvrbox .hvrbox-layer_top {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 15px;
}

.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
    opacity: 1;
}

.hvrbox .hvrbox-text {
    text-align: center;
    font-size: 16px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hvrbox .hvrbox-text_mobile {
    font-size: 15px;
    border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
    border-top: 1px solid rgba(179, 179, 179, 0.7);
    margin-top: 5px;
    padding-top: 2px;
    display: none;
}

.hvrbox.active .hvrbox-text_mobile {
    display: block;
}

#login {
  margin-left: auto;
  margin-right: auto;
  width: 300px; /* largeur obligatoire pour être centré */
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  /* Preserve aspet ratio */
  min-width: 100%;
  min-height: 100%;
}

#scrollUp {
position: fixed;
bottom : 10px;
right: -100px;
opacity: 0.5;
}
