/* Style the header with a grey background and some padding */
.header {
    overflow: hidden;
    background-color: black;
    padding: 20px 10px;
  }
  
/* Style the header links */
.header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Float the link section to the right */
.header-left {
  float: left;
}

body {
  background-color: darkgray;
  height: 100%;
  margin: 0;
}
.main {
  float: center;
  padding-left: 50px;
}

h1, h2, h3, h4 {
  float: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

h3 {
  color: darkred;
}
li {
  text-decoration: none;
}

section {
  padding-bottom: 50px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#cards {
  padding-left: 5%;
  padding-right: 5%;
}
.card {
  display: inline-block;
  margin: 25px;
  width: 40%;
  border: 2px solid black;
  border-radius: 5px;
  background-color: white;
  height: 50px;
  text-align: center;
  text-decoration: none;
  color: black;
}


/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

img {
  object-fit: cover;
}
#logo {
  width: 75px;
  height: 50px;
}

#aboutimg {
  width: 250px;
  float: left;
  margin-left: auto;
  margin-right: auto;
}

#personalised {
  width: 250px;
  float: left;
  margin-left: auto;
  margin-right: auto;
}

#homeimagestock {
  padding-left: 25%;
  width: 50%;
  display: block;
  height: 350px;
  object-fit: cover;
} 

/*gallery photos*/
.galphoto {
  width: 200px;
  height: 200px;
  display: inline-block;
  padding: 15px;
}


/*Footer*/

footer {
  position: relative;
  clear: both;
  bottom:0px;
  background-color: black;
  color: white;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}
footer a {
  color: white;
}
.follow-us > h4 {
  text-align: left;
}