body {
    background-image: url(../images/office.jpg);
  }

  .container{
    position: relative;
    display: inline-block; /* Make the width of box same as image */
}

h2{
    color: white;
    text-align: center;
}

/* Style the links inside the navigation bar */
.navigations {
    background-color: darkred;
    overflow: hidden;
    float: right;
}

.navigations a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.navigations a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.navigations a.active {
    background-color: darkblue;
    color: white;
}

.papedrop {
    position: relative;
    display: inline-block;
    float: right;
}

.papebtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.pape-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.pape-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.pape-content a:hover{
    background-color: #ddd;
}

.papedrop:hover  .pape-content{
    display: block;
}

.papedrop:hover .papebtn{
    background-color: #3e8e41;
}

#footer {
    text-align: center;
    padding: 3px;
    background-color: darkgray;
    color: white;
    position:absolute;
    bottom:0;
    width:100%;
    height:60px;   /* Height of the footer */
    background:grey;
}

.navfoo{
    color: white;
    float: left;
    background:grey;
}

.contfoo{
    color: white;
    float: right;
    background:grey;
}

.Contact {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
}

.aboutme{
    color: black;
    text-align: center;
}

.servdrop {
    position: relative;
    display: inline-block;
}

.servebtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.serve-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.serve-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.serve-content a:hover{
    background-color: #ddd;
}

.servdrop:hover  .serve-content{
    display: block;
}

.servdrop:hover .servebtn{
    background-color: #3e8e41;
}