/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 99%;
}
  
  /* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(69, 62, 62); 
    border-radius: 10px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #342f2f; 
}

body{
    margin: 0;
    background-color: #010100;
    color: #EBEBE3;
    height: 100vh;
}

header{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    margin-bottom: 50px;
    background-color: #000000d8;
    z-index: 1;
}

main{
    position: relative;
    width: 100%;
    height: calc(100vh - 300px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

footer{
    width: calc(100% - 20px);
    background-color: #131214;
    position: relative;
    bottom: 0;
    padding: 10px;
    padding-bottom: 40px;
    font-family: 'proxima-nova', sans-serif;
}

.footer-div{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly
}

.footer-time{
    
}

.times{
    color: #838282;
    width: 200px;
}

.time{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    letter-spacing: 3px;
}

.text-spacing{
    letter-spacing: 4px;
}

.fontf{
    font-family: 'Neue Aachen Pro', sans-serif;
}

.p-text{
    line-height: 1.7;
    font-family: 'Work Sans';
    font-size: 16px;
}

.home-div{
    height: fit-content;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding: 10px;
}

.img-home{
    margin-right: 60px;
    height: 400px;
}

.top-ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    user-select: none;
    font-size: 1.5em;
    font-family: 'proxima-nova', sans-serif;
}
  
.top-ul li {
    float: left;
}
  
.top-ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.5s;
}
  
.top-ul li a:hover {
    color: #768180;
    transition: 0.5s;
}

.img-menu{
    width: 250px;
    height: 200px;
}

.menu-ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
    max-width: 1200px;
    font-family: 'proxima-nova', sans-serif;
}

.fontp-n{
    font-family: 'proxima-nova', sans-serif;
}

.center{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-info{
    max-width: 250px;
}

.menu-p-fontsize{
    margin-top: -10px;
    font-size: 15px;
}

.menu-p-price{
    margin-top: -5px;
}

.menu-info{
    text-align: center;
}

.map-iframe{
    border-radius: 10px;
}

.reserve{
    padding: 20px;
    width: 700px;
    height: fit-content;
}

.reserve input{
    border: 1px solid #555;
    outline: none;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.reserve label{
    font-size: 18px;
}

.reserve input:focus{
    background-color: #dadada;
}

.res-input-amount{
    width: 49px;
}

.res-input-name{
    width: 127.5px;
}

.res-input-message{
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 14px;
    resize: none;
}

.res-input-message:focus{
    background-color: #dadada;
}

.submit-div{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.res-input-reset{
    background-color: red;
}

.res-input-submit{
    background-color: lime;
}

