* {
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  color: #3e2a1c;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #e9e9e9;
  background-blend-mode: color-burn;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flower {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/pozadi_web.jpg");
  background-repeat: repeat;
  background-size: cover;
  z-index: 1;
}

.card {
  position: relative;
  max-width: 600px;
  z-index: 2;
  margin: 50px;
  padding: 24px;
  border-radius: 50px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.5;

  @media only screen and (max-width: 600px) {
    margin: 26px;
  }
}

.card::before {
  content: "";
  position: fixed;
  left: 25%;
  width: 50%;
  height: 100%;
  background-color: #efeded;
  background: linear-gradient(
    to bottom,
    rgba(239, 237, 237, 0) 0%,
    rgba(239, 237, 237, 1) 30%,
    rgba(239, 237, 237, 1) 60%,
    rgba(239, 237, 237, 0) 100%
  );
  z-index: -1;
  border-radius: inherit;
  filter: blur(50px);

  @media only screen and (max-width: 600px) {
    filter: blur(30px);
    left: 7.5%;
    width: 85%;
    background: linear-gradient(
      to bottom,
      rgba(239, 237, 237, 0) 0%,
      rgba(239, 237, 237, 1) 15%,
      rgba(239, 237, 237, 1) 70%,
      rgba(239, 237, 237, 0) 100%
    );
  }
}

.content {
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 24px;
  padding: 48px 24px;

  @media only screen and (max-width: 600px) {
    padding: 24px 0px;
  }
}

h1 {
  font-size: 72px;
  color: #4a6147;

  @media only screen and (max-width: 600px) {
    font-size: 52px;
    marign-bottom: 0;
  }
}
h2 {
  font-size: 38px;

  @media only screen and (max-width: 600px) {
    font-size: 32px;
  }
}
h1,
h2 {
  font-family: "Great vibes", serif;
  margin: 0;
  margin-bottom: 12px;

  @media only screen and (max-width: 600px) {
    margin-bottom: 0px;
  }
}

a {
  color: inherit;
}

header {
  background-blend-mode: multiply;
  border-radius: 100%;
  width: 90%;
  margin: 20px auto 0 auto;
  text-align: center;
  justify-content: center;
  align-content: center;
}

section {
}

footer {
  background: #3e2a1c;
  color: white;
}
