@charset "utf-8";

:root {
  --text-color: rgb(237, 237, 227); /* whitesmoke; */
  --bg-color: #111111;
  --white-border-color: rgba(255,255,255,0.65);
  --error-bg-color: #C70039;
  --link-color: orange;
}


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.25);
  border: none;
}
::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: transparent;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SITE SPECIFIC styling ++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
  width: 100%;
}

body {
  background: var(--bg-color);
  color: var(--text-color) !important;
  font-family: "Inter", sans-serif; /* 'JetBrains Mono', monospace; */
  font-optical-sizing: auto;
  font-weight: 300; /* 400; */
  font-style: normal;
  line-height: 1.375em; /* 1.4em; */
  margin: 0px;
  padding: 0px;
  min-height: 100vh;
  overflow-x: auto;
}

.bgWrapper {
  position: fixed;
  inset: 0;
  background: url(../images/bg4.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.shadow {
  position: fixed;
  width: 100%;
  height: 10px;
  background-color: pink;
  box-shadow: 0px 0px 128px black;
  z-index: 0;
}

main {
  padding: 2rem;
  background-color: rgba(0,0,0,0.65); /* rgba(0,0,0,0.5); */
  border-radius: 0.25em;
  max-width: 60ch;
  margin: 0px auto;
}
main.fullWidth {
  max-width: 1400px;
}
/*
main > p:last-of-type {
  margin-bottom: 0px;
}
*/
p.spaceBelow {
  margin-bottom: 0.5em;
}


audio {
  width: 100%;
  height: 2.5em; /* auto; */
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* TYPE STUFF */

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400; /* 500;  */
  line-height: 1.1em;
  margin: 0px 0px 3rem 0px;
  letter-spacing: 0px;
}
h1 {
  font-size: 2.25em;
  line-height: 1.05em;
  padding: 0px;  
}
.logo h1 {
  font-weight: 400; /* 500; */
  margin: 0px;
}
.logo a:hover {
  text-decoration: none;
}
h2 {
  font-size: 2.25em;
  line-height: 1.05em;
  padding: 0px;
}
h3 {
  font-size: 1.75em;
  padding: 0px;
}
p {
  margin: 0px 0px 1.5rem 0px;
}

a {
  cursor: pointer;
  color: var(--link-color); /* var(--text-color); */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.center {
  text-align: center;
}

p.centerParagraph {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}


/* *************************************************************************************** */
/* GALLERY wrapper */

.galleryWrapper {
  display: block;
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.8em; /* 1em; */
  margin-bottom: 1.5rem;
}

.galleryWrapper a img {
  width: 100%;
  height: auto;
  display: block;
  float: left;
}

/* *************************************************************************************** */
/* POEM GALLERY wrapper */

.poemGalleryWrapper {
  display: block;
  width: auto;
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-gap: 0.8em; /* 1em; */
  margin-bottom: 1.5rem;
}

.poemGalleryWrapper a img {
  width: 100%;
  height: auto;
  display: block;
  float: left;
}


/* *************************************************************************************** */
/* content wrapper */

.guestbookAllWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
.guestbookAllWrapper div.message {
  background: rgba(0,0,0,0.5);
  padding: 1.5rem;
  border-radius: 6px;
}
.guestbookAllWrapper div.message .date,
.guestbookAllWrapper div.message .name {
  opacity: 0.65;
  font-weight: 300;
}
.guestbookAllWrapper div.message .title {
  margin-top: 0.5em;
  font-weight: bold;
}


.singlePost {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5em;
  background: rgba(0,0,0,0.5);
  padding: 1.5rem;
  border-radius: 6px;
}
.singlePost .date,
.singlePost .name {
  opacity: 0.65;
  font-weight: 300;
}
.singlePost .title {
  margin-top: 0.75em; /* 0.5em; */
  font-weight: bold;
  margin-bottom: 0.25em;
}

/* *************************************************************************************** */
/* *************************************************************************************** */
/* *************************************************************************************** */
/* MEDIA queries */


@media screen {

  body {
    font-size: 15px;
  }

  .pageWrapper {
    padding: 1em 0px 0px 0px; /* 1.5rem 1rem; /* 1.5rem; */
    min-height: 100dvh;
    position: relative;
  }

  header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin: 0px 0px 2em 0px;
    flex-direction: column;
    
  }  
  header h1 a {
    color: var(--text-color);
    text-decoration: none;
  }
  .logo {
    margin-bottom: 0.75em;
    padding: 0px 0.35em;
  }

  main {
    padding: 1rem;
  }

  
  /* menu */
  .burgerBtnWrapper {
    position: absolute;
    top: 0.825em; /* 0.6em; */
    right: 0.1em;
    display: block;
  }
  .burgerBtnWrapper a {
    display: block; /* inline; */
    text-decoration: none;
    font-size: 2rem;
    padding: 0.125em 0.25em;
    color: var(--text-color);
  }
  .burgerBtnWrapper a span {
    display: inline;
  }
  .burgerBtnWrapper a span.hidden {
    display: none;
  }
  .burgerBtnWrapper a span svg {
    display: inline;
  }


  /* menu */
  nav ul.menu {
    max-height: 0px;
    overflow: hidden;
    transition: all 100ms ease;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    line-height: 1.1em;
    display: flex;
    flex-direction: column;
    border-top: 0px;
    background: rgba(0,0,0,0.65); /* 375); /* .25); */
  }
  nav.shown ul.menu {
    height: auto;
    max-height: 250px; /* 180px; */
    border-top: 1px solid rgba(0,0,0,0.2); /* var(--white-border-color); */
  }
  nav ul.menu li {
    flex-grow: 1;
    flex-basis: 100%;
    margin: 0px;
    text-align: center;
  }
  nav ul.menu li a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500; /* 400; /* 500; */
    font-size: 1em; /* 0.9em; */
    text-align: center;
    padding: 0.75em 0px; /* 0.5em 0px; */
    border-bottom: 1px solid rgba(0,0,0,0.2); /* var(--white-border-color); */
  }
  nav ul.menu li a:hover {
    text-decoration: underline;
  }
  nav ul.menu li a.chosen {
    text-decoration: line-through;
  }


  /* **********/
  /* FORM */

  form {
    background-color: transparent; /* rgba(0,0,0,0.5); */
    padding: 0px; /* 1em 1.125em; */
    border-radius: 0px; /* 0.75em; */
  }
  form div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0.25em 0px;
    gap: 0px; /* 0.35em; */
    margin-bottom: 0.35em;
  }
  form label {
    text-align: left; /* center; */
    position: relative;
    margin-bottom: 0.35em;
  }
  form input,
  form textarea,
  form button {
    background-color: rgba(4,4,4,0.8); /* transparent; /* rgba(0,0,0,0.5); */
    border: 1px solid rgba(255,255,255,0.35);
    font-family: inherit;
    font-size: inherit;
    color: #aaaaaa; /* rgba(255,255,255,0.75); /* inherit; */
    line-height: inherit;
    border-radius: 6px;
    padding: 0.65em 1em;
    max-width: 100%;
  }
  form textarea {
    resize: vertical;
  }
  form input::placeholder,
  form textarea::placeholder {
    font-style: italic;
    color: rgba(255,255,255,0.275);
    font-size: 0.9em;
  }
  form button {
    background-color: rgba(0, 0, 255, 0.5);
    border-radius: 0.5em;
  }
  form button:hover {
    background-color: rgba(0, 0, 255, 0.75);
    cursor: pointer;
  }
  form .formSpacer {
    display: block;
    width: 100%;
    height: 0.5em;
  }
  form .required {
    color: var(--link-color); /* tomato; */
    vertical-align: top;
    position: absolute;
    top: -0.25em;
    margin-left: 0.5em;
    font-size: 1.1em;
  }
  form .errorContent {
    background-color: var(--error-bg-color);
    border: 0px; /* 1px solid red; */
    border-radius: 0px 0px 0.25em 0.25em;
    padding: 0.65em 1em;
    display: none;
  }
  form .errorShown {
    display: block !important;
  }

  .guestbookAllWrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .galleryWrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .poemGalleryWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* *************************************************************************************** */
/* MEDIUM */

@media (min-width: 400px) {

  .galleryWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .poemGalleryWrapper {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* *************************************************************************************** */
/* MEDIUM */

@media (min-width: 600px) {
  
  body {
    font-size: 15px;
  }

  .pageWrapper {
    padding: 2rem;
  }
  .logo {
    padding: 0px;
  }
  main {
    padding: 1.5rem;
  }

  .burgerBtnWrapper {
    top: 1.25em;
    right: 1.25em; /* 1em; */
  }

  .guestbookAllWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .poemGalleryWrapper {
    grid-template-columns: repeat(4, 1fr);
  }


}



/* *************************************************************************************** */
/* LARGE */

@media (min-width: 1024px) {

  .pageWrapper {
    padding: 3rem;
  }

  header {
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 4em 0px;
    flex-direction: row;
  }
  .logo {
    margin-bottom: 0px;
  }

  /* no burger on wide */
  .burgerBtnWrapper {
    display: none;
  }

  main {
    padding: 2rem;
  }


  nav ul.menu {
    flex-direction: row;
    max-height: none !important;
    border-top: 0px !important;
    background: transparent;
  }
  nav ul.menu li {
    margin: 0px 0px 0px 1.5em;
    padding: 0px;
  }
  nav ul.menu li a {
    border-bottom: 0px;
  }

  .guestbookAllWrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .galleryWrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .poemGalleryWrapper {
    grid-template-columns: repeat(5, 1fr);
  }  
  
}



/* *************************************************************************************** */
/* *************************************************************************************** */
/* *************************************************************************************** */
/* *************************************************************************************** */
/* *************************************************************************************** */
/* *************************************************************************************** */
/* FONTS */


/* jetbrains-mono-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/jetbrains-mono-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/jetbrains-mono-v20-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jetbrains-mono-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/jetbrains-mono-v20-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/jetbrains-mono-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/jetbrains-mono-v20-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/jetbrains-mono-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/jetbrains-mono-v20-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/jetbrains-mono-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/jetbrains-mono-v20-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/jetbrains-mono-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jetbrains-mono-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'JetBrains Mono';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/jetbrains-mono-v20-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* inter-100 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/inter-v7-latin-100.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-100.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-100.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-200 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/inter-v7-latin-200.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-200.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-200.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-300 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v7-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-300.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-regular - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v7-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-regular.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-500 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v7-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-500.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-600 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v7-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-600.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v7-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-700.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-900 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-v7-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-900.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-900.svg#Inter') format('svg'); /* Legacy iOS */
}
/* inter-800 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v7-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/inter-v7-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/inter-v7-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/inter-v7-latin-800.woff') format('woff'), /* Modern Browsers */
       url('../fonts/inter-v7-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/inter-v7-latin-800.svg#Inter') format('svg'); /* Legacy iOS */
}

