body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
    position: relative;
    width: 100%;
}
header {
    background-color: #333;
    color: #fff;
    padding: 10px;
}
nav {
    background-color: #333;
    color: #fff;
    position: fixed;
    width: 100%;
    margin: 0px;
    padding: 30px ;
    z-index: 1000;
}
nav a {
    color: #fff;
    background-color: #333;
    text-decoration: none;
    font-size: larger;
    margin:  0px;
    top: 0px;
    border-radius: 10px;
    padding: 20px;
}
nav b {
    color: #fff;
    text-decoration: none;
    font-size: larger;
    margin:  0px;
    top: 0px;
    border-radius: 10px;
    padding: 20px;
}
nav a:hover {
    background-color: #c2865f;
    padding: 20px;
}


section {
    padding: 20px;
    background-color: rgb(41, 41, 41); 
    color: azure;
}
b {
    padding: 20px;
    background-color: rgb(41, 41, 41); 
    color: azure;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;

    bottom: 0;
    width: 100%;
}

table th {
    color: #fff;
    font-size: x-large;
}

p {
    color: #fff;
}
::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
  

::-webkit-scrollbar-thumb {
    background: #c2865f;
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: #c45b13;
}

html {
    scroll-behavior: smooth;
}

#home
{
    padding: 1;
}
#aboutus
{
    padding: 1;
}
#services
{
    padding: 1;
}
#gallery
{
    padding: 1;
}
#contact
{
    padding: 1;
}
input[type=text], select, textarea {
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px; 
    resize: vertical 
}
  

input[type=submit] {
    background-color: #c2865f;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
input[type=submit]:hover {
    background-color: #c45b13;
}
.img1 {
    background-image: url(TEMP.jpg);
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-size: cover; 
    padding: 500px 200px; 
    font-size: large;
}
.img2 {
    background-image: url(TEMP2.jpg);
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-size: cover; 
    padding: 500px 200px; 
    font-size: large;
}
.img3 {
    background-image: url(TEMP3.jpg);
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-size: cover; 
    padding: 500px 200px; 
    font-size: large;
}
#home {
    opacity: 1;
    transition: opacity 0.2s; 
    
}
#home.fade {
    opacity: 0;
}
@media screen and (max-width: 480px) {
    .show-on-desktop {
      display: none;
    }
  }
  
@media screen and (min-width: 481px) {
    .hide-on-desktop {
      display: none;
    }
  }
.dropdown {
    float: left;
    overflow: hidden;
  }
  

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    font-family: inherit; 
    color: #fff;
    background-color: #333;
    text-decoration: none;
    font-size: larger;
    margin:  0px;
    top: 0px;
    border-radius: 10px;
    padding: 20px;
    
  }
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    color: #fff;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #fff;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }