/** 00030 */
/**

Circe Regular
font-family: "circe", sans-serif;
font-weight: 400;
font-style: normal;
Circe Italic
font-family: "circe", sans-serif;
font-weight: 400;
font-style: italic;
Circe Bold
font-family: "circe", sans-serif;
font-weight: 700;
font-style: normal;
Circe Bold Italic
font-family: "circe", sans-serif;
font-weight: 700;
font-style: italic;
Circe Rounded Regular
font-family: "circe-rounded", sans-serif;
font-weight: 400;
font-style: normal;
Circe Rounded Bold
font-family: "circe-rounded", sans-serif;
font-weight: 700;
font-style: normal;

**/

/**
font-family: goodlife-sans, sans-serif;
font-weight: 400;
font-style: normal;

**/
:root {
  --white: #f9f9f9;
  --black: #36383f;
  --gray: #85888c;
  --ice-pink-dark: hsl(348.82758, 88%, 68%);
  --ice-pink-mid: hsl(350.45456, 85%, 80%);
  --ice-pink-light: hsl(345.6, 51%, 90%);
  --cup-tan-dark: hsl(24, 30%, 36%);
  --cup-tan-light: hsl(31.800001, 42%, 53%);
  --bubble-purple: hsl(263.44827, 42%, 60%);
  --bubble-blue: hsl(217.5, 86%, 84%);
  --outline-light: hsl(15, 80%, 88%);
} /* variables*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "circe", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "amatic-sc", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.8em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.4em;
}

h4,
h5,
h6 {
  font-size: 1.2em;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 12px;
}

nav ul {
  list-style: none;
}

ul {
  padding: 0;
  margin: 16px 24px;
}

header {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  background-color: var(--white);
  box-shadow: 1px 1px 5px 0px var(--gray);
  position: sticky;
  top: 0;
  width: 100%;
}

header h1 {
  font-size: 1.4em;
  align-self: flex-end;
  font-variant: small-caps;
  color: var(--black);
  margin: 0;
  margin-left: -8px;
  margin-bottom: 8px;
  padding: 0;
}

/* Logo */
.logo {
  display: inline-block;
  color: var(--white);
  margin-left: 8px;
  margin-top: 8px;
}

.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--white);
  overflow: hidden;
}

.menu a {
  display: block;
  padding: 16px;
  color: var(--black);
}

.menu a:hover {
  background-color: var(--gray);
}

.nav {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.hamb {
  cursor: pointer;
  padding: 40px 12px;
  margin-left: auto;
} /* Style label tag */

.hamb-line {
  background: var(--black);
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
} /* Style span tag */

.hamb-line::before,
.hamb-line::after {
  background: var(--black);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

.side-menu {
  display: none;
}

.side-menu:checked ~ nav {
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}

.subnav-content {
  background-color: var(--white);
  width: 100%;
  z-index: 1;
  padding: 20px 0;
  display: none;
}
.subnav-content a {
  color: var(--black);
  text-decoration: none;
  padding: 0;
  margin: 10px 0;
  text-align: center;
}
.subnav:hover .subnav-content {
  display: block;
}

@media (min-width: 768px) {
  .nav {
    min-width: 100%;
    display: flex;
    justify-content: flex-end;
    max-height: none;
    top: 0;
    position: relative;

    width: fit-content;
    background-color: transparent;
  }
  .menu li {
    float: left;
  }
  .menu a:hover {
    background-color: transparent;
    color: var(--gray);
  }

  .hamb {
    display: none;
  }

  /* Sub nav */
  .subnav-content {
    padding: 20px 0;
    display: none;
    background-color: var(--black);
  }
  .subnav-content a {
    color: white;
  }

  header h1 {
    font-size: 2.8em;
    margin-bottom: -2px;
    margin-left: -4px;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply the animation to the menu items */
.side-menu:checked ~ nav .menu a {
  animation: slideIn 0.5s forwards;
}

main {
  padding: 16px 24px 0 24px;
}

article {
  margin-bottom: 24px;
}

.flex-row {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 48px;
}

.flex-row h1 {
  font-size: 1.1em;
  margin-left: -6px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .flex-row h1 {
    font-size: 1.8em;
    margin-left: -4px;
    margin-bottom: 8px;
  }
}

.flex-col {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  max-width: 260px;
  margin-top: 48px;
}

.flex-col h1 {
  font-size: 2.4em;
  margin-left: 0;
  margin-bottom: 0;
  text-align: center;
  line-height: 1em;
}
