html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}
.navbar{
    height: 75px; 
    border-bottom: 3px solid #fd3903;
}
.navbar a{
    color: black;
    font-size: medium;
}
#nav1{
    width: 80px;
    height: 36px;
    margin-top: 31px;
    cursor: pointer;
}
#nav2{
    width: 85px;
    height: 28px;
    margin-top: 31px;
}
#nav3{ 
    width: 110px;
    height: auto;
    margin-top: 30px;
    border-top: 3px solid #fd3903;
    border-left: 3px solid #fd3903;
    border-right: 3px solid #fd3903; 
    background-color: #f7b9a8;
}
#logo{
    height: 50px;
}
#button{
    position: fixed;
    right: 30px;
    bottom: 40px;
    height: 38px;
    padding-top: 3px;
    width: 38px;
    border-radius:25px;
    z-index: 2;
    background-color: #fd3903;
    color: white;
    visibility: hidden;
    animation: hide 1s forwards;
}
#table{
    margin-top: 100px;
}
#map{
    border: 3px solid #fd3903 ;
}
footer{
    margin-top: 70px;
    height: 130px;
    background-color: #3a3a3a;
}
footer i{
    border-radius: 25PX;
    margin-top: 50px;
}
#facebook{
    color: blue;
    background-color: white;
    padding: 0;
}
footer p{
    font-size: smaller;
}

@keyframes hide{
    0%{
        opacity: 100;
    }
    100%{
        opacity: 0;
    }
}