body{
    background-color: rgb(247, 236, 220) ;   
   }

/* Style the top navigation bar */
.navbar {
    overflow: hidden; /* Hide overflow */
    background-color: #333; /* Dark background color */
  }
  /* Style the navigation bar links */
  .navbar a {
    float: left; /* Make sure that the links stay side-by-side */
    display: block; /* Change the display to block, for responsive reasons (see below) */
    color: white; /* White text color */
    text-align: center; /* Center the text */
    font-family: cursive; 
    padding: 14px 20px; /* Add some padding */
    text-decoration: none; /* Remove underline */
  }
  
  /* Right-aligned link */
  .navbar a.right {
    float: right; /* Float a link to the right */
  }
  
  /* Change color on hover/mouse-over */
  .navbar a:hover {
    background-color: #ddd; /* Grey background color */
    color: rgb(0, 0, 0); /* Black text color */
  }

  .header {
    padding: 80px; /* some padding */
    text-align: left; /* center the text */
    background-image: url('../img/museum.jpg');/* Plovdiv City Header Background Image */
    background-size:contain;
    background-size:100% 100%;
    color: rgb(255, 255, 255); /* white text color */
    font-family: cursive;
    text-shadow: 1px 1px rgb(0, 0, 0);
    text-size-adjust: 10px;
  }

.header p {
    font-family:sans-serif; /* chaning the font on the text under the tile*/
    font-weight: bold;
    font-size: 20px;
}

  /* Increase the font size of the <h1> element */
  .headertitle { font-size: 25px;
  }

  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 270px;
    margin: 10px; /* Added margin for spacing between cards */
    text-align: center;
    font-family:Helvetica, sans-serif;
    color: #ffffff;
    display: inline-block; /* Added to align cards horizontally */
    background-color: rgb(96, 84, 157);
  }
  
  .title h1 {
    color: rgb(255, 255, 255);
    font-family:Arial, Helvetica, sans-serif, sans-serif;
    font-size: 18px;
    
  }
  
  button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  a {
    text-decoration: none;
    font-size: 22px;
    color: black;
  }
  
  button:hover,
  a:hover {
    opacity: 0.7;
  }

  
  .footer {
    padding: 20px; /* Some padding */
    text-align: center; /* Center text*/
    background: #ddd; /* Grey background */
  }