:root {
  --tonique: #f99d1b;
  --margin: 20px;
  --radius: 25px;
}

* {
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Hersey Duplex Bold";
  src: url(../fonts/Hershey-Noailles-Times-Duplex-Bold.otf) format("opentype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Hersey Regular";
  src: url(../fonts/Hershey-Noailles-Futura-Simplex-Regular.otf) format("opentype");
  font-style: normal;
  font-weight: regular;
}

html {
  scroll-behavior: smooth;
  font-family: "Hersey Regular", sans-serif;
}

@media all {
  b, strong {
    font-family: "Hersey Duplex Bold", sans-serif;
  }

  i {
    font-family: "Hersey Italic", sans-serif;
  }

  h1, h2, h3 {
    font-family: "Hersey Duplex Bold", sans-serif;
  }

  .container {
    display: inline-block;
    align-content: start;
    gap: 10px;
    width: 100%;
  }

  iframe {
    width: 100%;
  }

  .flex-item {
    box-sizing: border-box;
    display: block;
    align-content: start;
  }

  .center {
    margin: auto;
    text-align: center;
    top: 38vh;
    position: relative;
  }

  .portrait {
    border-radius: var(--radius);
  }

  .tonique {
    background-color: var(--tonique);
  }

  .tonique {
    background-color: var(--tonique);
  }

  header {
    height: 100vh;
    background-image: url(/img/headerimg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--tonique);
    background-clip: border-box;
  }

  .title {
    position: relative;
    top: 0;
    left: 0;
    margin-left: var(--margin);
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .navbar {
    position: fixed;
    top: 0;
    z-index: 10;
    align-items: baseline;
    background-color: white;
  }

  button {
    background-color: var(--tonique);
    border-radius: var(--radius);
    display: inline-block;
    cursor: pointer;
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    border: none;
    font-family: "Hersey Duplex Bold", sans-serif;
  }

  button:hover {
    background-color: white;
  }

  a, a:visited {
    color: black;
    white-space: normal;
    text-decoration: none;
  }

  a:hover {
    color: var(--tonique);
  }

  a>svg:hover {
    fill: var(--tonique);
  }

  footer>a>svg {
    fill: white;
  }

  footer>a>svg:hover {
    fill: black;
  }

  img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius);
  }

  footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--tonique);
    color: white;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 3.5em;
    ;
  }

  footer a, footer a:visited {
    color: white;
  }

  footer a:hover {
    color: black;
  }
}

@media only screen and (min-width: 768px) {
  .flex-row {
    display: flex;
    align-items: start;
    align-items: baseline;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1em;
    margin: var(--margin);
    max-width: 100vw;
  }

  .f10 {
    width: 10%;
    text
  }

  .f20 {
    width: 20%;
  }

  .f30 {
    width: 30%;
  }

  .f40 {
    width: 40%;
  }

  .f50 {
    width: 50%;
  }

  .f60 {
    width: 60%;
  }

  .f80 {
    width: 80%;
  }

  .f100 {
    width: 100%;
  }

  .landing-text {
    background-color: white;
    border-radius: var(--radius);
    width: 45vw;
    padding: 23px;
  }
}

@media only screen and (max-width: 767px) {
  .flex-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5em;
    margin: var(--margin);
    margin-top: var(--margin);
  }

  .landing-text {
    background-color: white;
    border-radius: var(--radius);
    margin: auto;
    width: 80vw;
    padding: 20px;
  }
}