html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  font-family: area-normal, sans-serif;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: currentColor;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.infos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 62%;
  min-height: 100vh;
  padding: 80px;
}

.header {
  font-size: 40px;
}

.main {
  width: 50%;
  align-self: center;
  margin-bottom: 1.25rem;
}

h1 {
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.2rem;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.links {
  font-weight: bold;
}

.location {
  font-weight: 100;
}

.cover {
  flex: 0 0 auto;
  width: 38%;
  height: 100vh;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .container {
    flex-direction: column;
  }

  .infos {
    width: 100%;
    padding: 40px;
    justify-content: flex-start;
  }

  .header {
    margin-bottom: 80px;
  }

  .main {
    padding: 0;
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  .description {
    font-size: 1.125rem;
    margin-bottom: 80px;
  }

  .cover {
    display: none;
  }
}
