h1{
    text-align: center;
}

body{
 background-color: #f7ecdc ;   
}

.header {
    padding: 80px; /* some padding */
    text-align: left; /* center the text */
    background-image: url('../img/plovdivguide1a.jpg');/* Plovdiv City Header Background Image */
    background-size:contain;
    background-size:100% 100%;
    color: white; /* white text color */
    font-family: cursive;
    text-shadow: 1px 1px black;
    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;
  }

/* Style the top navigation bar */
.navbar {
    overflow: hidden; /* Hide overflow */
    background-color: #333; /* Dark background color */
  }

  @import url('https://fonts.googleapis.com/css?family=Roboto');
  
  /* 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, sans-serif;
    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: black; /* Black text color */
  }


  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 290px;
    margin: 3px; /* Added margin for spacing between cards */
    text-align: center;
    font-family:cursive, sans-serif;
    display: inline-block; /* Added to align cards horizontally */
    background-color: rgb(96, 84, 157);
  }
  
  .title {
    color: rgb(255, 255, 255);
    font-family:Helvetica, 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: #614b81; /* Grey background */
  }
  