* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, form {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style-type: none;
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

sub {
  vertical-align: text-top;
  font-size: smaller;
}

button {
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
}

:focus {
  outline: none;
}

input:focus, textarea:focus, keygen:focus, select:focus {
  outline-offset: 0;
}

input[type="range"], input, input:matches([type="password"], [type="search"]) {
  border-width: 0;
  padding: 0;
}

input, select, textarea {
  margin: 0;
  border-radius: 0;
  border-width: 0;
  border: none;
  padding: 0;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  text-align: center;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 10rem #131313 inset;
  -webkit-text-fill-color: #fff !important;
}

img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

strong {
  font-weight: bolder;
}

a {
  color: var(--color-tertiary);
}

p {
  white-space: pre-line;
}

/* personnalize browser scrollbar */
/* ::-webkit-scrollbar {
    height: 0.5rem;
    width: 0.5rem;
    background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
	background: var(--color-tertiary); 
} */
/* SharpSans Medium */
@font-face {
  font-family: 'Helvetica Neue';
  src: url("../fonts/HelveticaNeue.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* personnalize text selection */
::-moz-selection {
  color: var(--color-secondary);
  background: var(--color-primary);
}
::selection {
  color: var(--color-secondary);
  background: var(--color-primary);
}

:root {
  --color-primary: #1A171B;
  --color-secondary: #FFFF00;
}

html {
  font-size: 0.926vmin;
  overflow-x: hidden;
  overscroll-behavior: none;
}

body {
  /* variable to be overwrite by calculated body innerheight */
  --height-100vh: 100vh;
  height: var(--height-100vh);
  width: 100vw;
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 10rem 14rem 12rem;
  overflow: hidden;
}

.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 30rem;
}

.layout__headline {
  width: 100%;
  margin-bottom: auto;
}

.layout__title {
  display: block;
  width: 100%;
  margin-bottom: 2.5rem;
}

.layout__title svg {
  height: auto;
  width: 100%;
}

.layout__title svg path {
  fill: var(--color-primary);
}

.layout__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.layout__contact h2, .layout__contact a, .layout__contact address {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.9rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
  html {
    font-size: 1.234vmin;
  }
  body {
    padding: 5rem 7rem 6rem;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  html {
    font-size: 1.965vmin;
  }
  body {
    padding: 2.5rem 3.5rem 3rem;
  }
}

@media screen and (max-width: 850px) and (min-aspect-ratio: 13 / 9) and (orientation: landscape) {
  html {
    font-size: 1.404vmin;
  }
  body {
    padding: 2.5rem 3.5rem 3rem;
  }
}
/*# sourceMappingURL=main.css.map */