@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital@0;1&family=Henny+Penny&display=swap');

* {
  box-sizing: border-box;
  transition: all 0.2s ease;
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background: #ffcfe4;
  background: linear-gradient(136deg,rgba(255, 207, 228, 1) 1%, rgba(250, 250, 250, 1) 34%, rgba(255, 255, 255, 1) 54%, rgba(255, 255, 255, 1) 61%, rgba(255, 247, 173, 1) 100%);
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  padding: 15px;
}

.background-image {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  pointer-events: none;
  z-index: -1;
}

.spacer {
  height: 225px;
}

h1 {
  display: block;
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
}

h1, h2 {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 3px 3px 3px;
}

h2 {
  display: block;
  font-weight: 400;
  text-align: center;
  font-size: 1.3rem;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .spacer {
    display: none;
  }
  .background-image {
    position: relative;
    float: right;
    width: 200px;
  }
  h1, h2 {
    width: 100%;
    background: unset;
  }
}

.btn {
    border-color: rgb(202, 157, 51);
    border-width: 2px;
    border-style: solid;
    background-color: rgb(255, 255, 255, 0.8);
    border-radius: 5px;
    color: black;
    margin: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-family: inherit;
    cursor: pointer;
}

.btn:hover {
  transform: scale(1.1);
}

.btn:focus {
    outline: none;
}

footer {
  padding: 15px;
  margin-top: 2rem;
}

.dad-link {
  display: block;
  margin-bottom: 3rem;
  text-align: center;
  color: rgb(68 68 68);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}