@font-face {
  font-family: Wasa;
  src: url(/Wasa-Trial-Regular.324fa1bb.otf);
}

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

:root {
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  --color-text: black;
  --color-bg: #cdced3;
  --color-title: var(--color-text);
  --color-link: #000;
  --color-link-hover: #242222;
  --color-menu-link: #000;
  --color-menu-link-hover: #000;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: Wasa, Helvetica, sans-serif, campaign, -apple-system,
    BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --button-color: #fff;
  --button-bg: #000;
}

/* Style the header with a grey background and some padding */
header {
  grid-area: header;
  padding: 20px 10px;
}

/* Style the header links */
header a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  line-height: 55px;
  border-radius: 4px;
}
/* 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: 96px;
  line-height: 85px;

  font-weight: bold;
  position: relative;
  left: 0.1em;
}

header a.about {
  font-size: 55px;
  font-weight: bold;
  position: relative;
  left: 0.1em;
}

p {
  font-size: 1.5em;
}

.flexleft {
  flex: 0.6;
  text-align: left;
  margin-left: 1.5em;
}

.flexright {
  flex: 0.4;
  text-align: left;
  margin-right: 1em;
  margin-left: 160px;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .flexphone {
    flex-direction: column;
  }
  .flexleft {
    text-align: left;
    margin-left: 1.5em;
  }
  .flexright {
    text-align: left;
    margin-left: 2em;
  }

  .img1 {
    width: 40% !important;
  }
  .img2 {
    width: 50% !important;
  }
}


/*# sourceMappingURL=/page.fff09b40.css.map */