:root {
  --primary-color: #3498db;
  --secondary-colour: #f5a97f;
  --accent-color: #f1c40f;
  --background-color: #bac2de;
  --primary-colour: #181926;
  --peach: #f2cdcd;
  --lavendar: #b4befe;
}

.con {
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: auto;
  display: grid;
  grid-auto-flow: dense;
  grid-gap: 0.8em;
  padding-top: 2em;
}

@media (min-width: 768px) {
    .con {
	width: 80%;
    grid-template-columns: repeat(4, 1fr);
  }
}



@font-face {
  font-family: "bluunext";
  src:
    url("fonts/bluunext-titling.woff2") format("woff2"),
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: var(--background-color);
  color: #585b70;
  margin: 0;
  font-family: "bluunext", sans-serif;
}
a {
    color: var(--secondary-colour);
}

button {
  background-color: var(--other-colour);
  color: white;
}

.home-image {
  background-color: var(--peach);
  padding: 0.75em;
  border-radius: 10px;
}



.col {
  flex-direction: column;
}
 img { 
  max-width: 100%; 
  max-height: 100%;
  height 100%;
}

header {

}

.nav-bar {
    padding-left: 1.5em;
    padding-right: 1.5em;
    background-color: var(--peach);
    display:flex;
    flex-direction: column;
}
@media (min-width: 768px) {
  .nav-bar {
    flex-direction: row;
  }
}

.logo {
  font-size: 2.4em;
  margin-right: 1.5em;
}

.blue-shadow {
      text-shadow: -1px 1px #81c8be, -2px 2px #81c8be,-3px 3px #81c8be;
}
.home-img
{
    object-fit: cover;
    max-width: 100%;
  max-height: 100%;
}
