/* Css stylesheet for the website's Navbar */
.dynapuff {
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
  font-weight: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/*Chewy font "https://fonts.google.com/specimen/DynaPuff"*/

.delicious-handrawn-regular {
  font-family: "Delicious Handrawn", cursive;
  font-weight: 400;
  font-style: normal;
}
/*DELICIOUS HANDRAWN FONT "https://fonts.google.com/specimen/Delicious+Handrawn"*/


.navbar1 {
  display: flex;
  flex-direction: column; /* stack logo and heading vertically */
  align-items: center;    /* center horizontally */
  justify-content: center;/* center vertically if navbar has height */
  background-color: #7bb4e8;
  height: 320px;
  padding: 10px;
}

.links a{
  text-decoration: none;
}

.links a h2{
  color: white;
  text-decoration: none;
}


.contacts {
  font-family: "DynaPuff", Arial;
  position: absolute;
  top: 20px;
  left: 20px; 
}

.contacts a {
  font-family: "DynaPuff", Arial;
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-size: 14pt;
  text-shadow:
  -1px -1px 0 black,
  1px -1px 0 black,
  -1px  0.5px 0 black,
  0.5px  0.5px 0 black;
}

.contacts a h4{
  font-family: "DynaPuff", Arial;
  color: white;
  text-decoration: none;
  margin: 0 0 8px 14px;
  font-size: 18pt;
  text-shadow:
  -1px -1px 0 black,
  1px -1px 0 black,
  -1px  1px 0 black,
  1px  1px 0 black;
}



.navbar1 div.logo {
  padding: 8px;
}

.navbar1 div.links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  color: white;
  font-size: 12pt;
  font-family: "DynaPuff", Arial;
  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px  1px 0 black,
    1px  1px 0 black;
}

.navbar1 div.links h2 {
  margin: 0; /* remove default margin */
}

