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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

body {
  color: rgba(0, 0, 0, 0.67);
  background-color: #fdebd0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-font-feature-settings: "liga" on;
  font-feature-settings: "liga" on;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

h1,
h2 {
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2rem;
}
.title {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5625rem;
  line-height: 1.44;
}

p {
  margin-bottom: 0.625rem;
}

.site-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: auto;
  max-width: 68rem;
  height: auto;
  margin: 1rem;
  border-radius: 2px;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.text-block,
.image-block {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-width: 520px;
}

.text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4rem 4rem 6rem;
  background-color: white;
}

.image-block {
  background: lightblue url(../src/cypress_trees.jpg) no-repeat scroll
    center/cover;
  height: 30vh;
}

.header {
  position: relative;
}

.main {
  position: relative;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  margin-bottom: 2rem;
}

.footer {
  position: relative;
  opacity: 0.8;
  font-size: 0.9375rem;
  font-variation-settings: "wght" 300;
}

.copyright {
  margin-bottom: 0;
}

@media (min-width: 64rem) {
  .site-wrapper {
    width: 68rem;
  }

  .text-block,
  .image-block {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    min-width: 320px;
  }

  .text-block {
    padding: 6rem;
  }

  .image-block {
    min-height: 41.25rem;
  }
}
