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%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  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;
}
/* inter-200 - 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: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url("fonts/inter-v12-latin-200.eot"); /* IE9 Compat Modes */
  src: url("fonts/inter-v12-latin-200.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("fonts/inter-v12-latin-200.woff2") format("woff2"),
    /* Super Modern Browsers */ url("fonts/inter-v12-latin-200.woff")
      format("woff"),
    /* Modern Browsers */ url("fonts/inter-v12-latin-200.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("fonts/inter-v12-latin-200.svg#Inter")
      format("svg"); /* Legacy iOS */
}

/* inter-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: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/inter-v12-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("fonts/inter-v12-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("fonts/inter-v12-latin-regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("fonts/inter-v12-latin-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("fonts/inter-v12-latin-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("fonts/inter-v12-latin-regular.svg#Inter")
      format("svg"); /* Legacy iOS */
}
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/inter-v12-latin-600.eot"); /* IE9 Compat Modes */
  src: url("fonts/inter-v12-latin-600.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("fonts/inter-v12-latin-600.woff2") format("woff2"),
    /* Super Modern Browsers */ url("fonts/inter-v12-latin-600.woff")
      format("woff"),
    /* Modern Browsers */ url("fonts/inter-v12-latin-600.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("fonts/inter-v12-latin-600.svg#Inter")
      format("svg"); /* Legacy iOS */
}

/****************  Styles ********************/

body {
  background-color: #625a57;
  color: white;
  font-family: "Inter", sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-family: "Inter";
  font-style: normal;
  line-height: 1.3;
  font-weight: 200;
}

a {
  text-decoration: none;
  color: white;
  font-weight: 200;
}

a:hover {
  color: #d3cbc8;
  text-decoration: underline;
}

h1 {
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 20px;
}

h2 {
  font-weight: 600;
  font-size: 20px;
}

.container {
  display: flex;
  padding: 10%;
  max-width: 1200px;
  gap: 60px;
  justify-content: center;
  align-items: flex-end;
}

.box.info {
  display: flex;
  flex-direction: column;
}

.box img {
  width: 200px;
}

.text-box-adresse {
  display: flex;
  align-items: flex-end;
  hyphens: none;
  white-space: nowrap;
}

.adresse a {
  display: block;
  margin-left: 50px;
  line-height: 1.3;
}

@media screen and (max-width: 760px) {
  .container {
    flex-direction: column;
    padding: 40px;
  }

  .box img {
    width: 100%;
  }

  .box.info {
    width: 100%;
  }

  .text-box-adresse {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .adresse {
    padding-top: 40px;
  }

  .adresse a {
    display: block;
    margin: 0;

    line-height: 1.3;
  }
}
