body, html {
    height: 100%;
    background-color: #800020;
    padding: 0;
    margin: 0;
    background-image: url("/images/picServices.jpeg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    background-size: cover;
}
  
.picServices{
    height: 100%;
    background-position: center;
    background-size: cover;
    text-align: center;  
}
.titleAbout{
    color: #800020;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Satisfy', cursive;
    font-size: 25pt;
}
.space{
    height: 10%;
}
.box{
    position: absolute;
    width: 60%;
    left: 20%;
    border-color: black;
    border: 1px solid black;
    top: 30%;
    background-color: #FFFdd0;
    padding: 10px;
    font-size: 14pt;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}
    
  /* Add a black background color to the top navigation */
  .topnav {
      background-color: #333;
      overflow: hidden;
    }
    .topnav button.icon{
        background-color: #333;
    }
    #logo{
    float: left;
    position: fixed;
    z-index: 1;
  }
    /* Style the links inside the navigation bar */
    .topnav a {
      float: right;
      display: block;
      color: #f2f2f2;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
      font-size: 17px;
    }
    
    /* Add an active class to highlight the current page */
    .active {
      background-color: #4CAF50;
      color: white;
    }
    
    /* Hide the link that should open and close the topnav on small screens */
    .topnav .icon {
      display: none;
    }
    .iconbtn{
      background: #333;
      border: none;
    }
     /* Add a dark background on topnav links and the dropdown button on hover */
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
  }

  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 600px) {
    a img{display: none;}
    .topnav a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }
    .topnav button.icon{
        background-color: #333;
    }
    .topnav a.icon {
        background-color: #333;
      float: right;
      display: block;
    }
    .titleAbout{
        font-size: 16pt;
        top: 20vh;
    }
    /* .box{
        top: 40vh;
        width: 300px;
        left: 5%;
    } */
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;
    z-index: 1;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }
  }