/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url('/assets/foambackground2.png');
  background-size: cover;
  background-color: white;
  color: black;
  font-family: Verdana;
}

@font-face {
  font-family: "Old English"; 
  src: url("/Fonts/old_london/OldLondon.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;  
}

.container2 {
  height: 200px;
  background-color: white;
  border-style: solid;
  border-color: grey;
  box-shadow: 0px 5px 10px;
  padding: 15px; 
}

.mainbox {
  width: 750px;
  margin: auto 0;
  background-color: white;
  border-style: solid;
  border-color: grey;
  box-shadow: 0px 5px 10px;
  padding: 15px;
  display: block;
  margin-top: 5px;
}

.gallery {
  width: 750px;
  margin: auto 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.inner-gallery {
  font-family: "Old English";
  display: block;
  margin-bottom: 15px; 
}

.igtext {
  color: black;
  font-size: 30px;
  margin: 0px;
}

.slogan {
  width: 200px;  
  padding: 5px;
  border-style: solid;
  border-color: black;
  border-radius: 3px;
  font-family: "Times New Roman", serif;
  font-size: 22px;
}

.heading {
 font-family: "Old English"; 
 font-size: 45px;
 font-style: bold;
 border-style: groove;
 border-width: 6px;
 border-radius: 5px;
 display: inline-block;
 padding: 7px;
 margin: 5px;
}

.logo {
  width: 500px;
  height: 70px;
  object-fit: cover;
  display: inline-block;
}

.grid1 {
 display: grid;
 grid-template-columns: 500px 200px;
}

.image {
  width: 150px; 
  height: 150px;
  object-fit: fill;
  box-shadow: 5px 5px 0px, gray;
}

.link {
  margin: 5px; 
}