@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  padding: 0;
  background-color: #c30f16;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: gold;
  text-shadow: 1px 1px 2px black;
}

.pfp {
  max-width: 20%;
  border-radius: 50%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  transition: 0.1s ease-in-out;
}

.pfp:hover {
  transform: scale(1.05);
}

h1 {
  font-family: "Berkshire Swash", serif;
}

.subtitle {
  font-size: 1.25em;
}

.content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

#giftForm {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 15%;
}

.formSection {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.submitBtn {
  padding: 10px;
  border-radius: 25px;
  border: 0;
  background-color: #1e792c;
  color: white;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: auto;
}

.submitBtn:hover {
  background-color: #196324;
}

.btnSection {
  display: flex;
  align-items: center;
}

.decorationImg {
  position: fixed;
  max-width: 30%;
}

.christmasLightsLeft {
  top: 0;
  left: 0;
  max-width: 20%;
}

.christmasLightsRight {
  top: 0;
  right: 0;
  max-width: 20%;
  transform: scaleX(-1);
}

.reindeer {
  right: 0;
  bottom: 0;
}

.christmasTree {
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 850px) {
  .decorationImg {
    display: none;
  }

  .pfp {
    max-width: 100%;
    width: 75%;
  }
}
