@font-face {
    font-family: "TT Neoris Trial";
    src: url("/fonts/TT Neoris Trial Variable.ttf") format("truetype");
    font-weight: 400;
}

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

*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  font-family: "TT Neoris Trial";
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

#main-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    flex-wrap: balance;
    column-gap: 2rem;
    
}

#main-container > div {
    #name {
        text-align: center;
        font-size: 5rem;
    }

    #logo {
        width: 20vw;
        justify-self: center;
    }

    :last-child {
       margin-bottom: 24vh;
    }

}
