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

* {
  margin: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Acid Grotesk", sans-serif;
  background-image: url("../images/background_960.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 960px) {
  body {
    background-image: url("../images/background_1920.jpg");
  }
}
@media screen and (min-width: 1920px) {
  body {
    background-image: url("../images/background_2880.jpg");
  }
}
@media screen and (min-width: 2880px) {
  body {
    background-image: url("../images/background_3840.jpg");
  }
}

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;
}

.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.paragraph {
  margin-top: 8px;
  font-size: 16px;
  color: #1f362e;
}

.heading {
  font-size: 26px;
  color: #1f362e;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .heading {
    font-size: 23px;
  }
}

.button {
  border: 1px solid #f2f0e0;
  color: inherit;
  text-decoration: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s;
  margin-top: 24px;
}
.button:first-of-type {
  margin-top: 48px;
}
.button:hover {
  background-color: #f2f0e0;
}

.popup {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fcfaf5;
  padding: 48px 24px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.0509803922);
  width: calc(100% - 48px);
  max-width: 500px;
}
.popup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.logo {
  width: 80px;
}/*# sourceMappingURL=style.css.map */