/*===== Global =====*/
:root {
  --main-font: "Ysabeau Office", sans-serif;
  --heading-font: "Diphylleia", serif;
}

::selection {
  background-color: #723333bf;
  color: #fff;
}

body {
  font-family: var(--main-font);
  letter-spacing: 0.8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

.adjust-content {
  max-width: 800px;
  margin: auto;
}

.btn-main {
  background-image: linear-gradient(
    to right,
    rgba(199, 3, 3, 0.364),
    rgba(6, 151, 183, 0.367)
  );
  border-radius: 100vh;
  border: inherit;
  --bs-btn-color: #ffffffee;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(115, 51, 51);
  --bs-btn-hover-border-color: rgb(115, 51, 51);
  letter-spacing: 1px;
  font-weight: bolder;
  box-shadow: 1px 3px 7px -5px #4f0b0bc4;
}

/*===== Home =====*/
.home {
  min-height: 100vh;
  background-image: linear-gradient(to right, #00000027, #ff00e127),
    url(../images/dots.png);
}

.card {
  background-color: #ffffffbd;
  box-shadow: 3px 3px 17px -8px #00000091;
}

h1 {
  color: #723333bf;
  text-shadow: -2px 1px 0px #80000030;
}

h1::first-letter {
  font-size: 63px;
  padding-right: 5px;
  padding-top: 2px;
  color: #4f0b0b8f;
  font-weight: 500;
}

h4 {
  color: #8e6464de;
  font-size: 19px;
}

#quote {
  color: #4f0b0bc4;
  font-style: italic;
}

#author {
  color: #8e6464de;
  margin-top: -6px;
  font-size: 0.875em;
}

i {
  color: #4f0b0b8f;
  font-size: 20px;
  padding-block: 15px;
}

@media screen and (max-width: 415px) {
  h1 {
    font-size: 20px;
  }

  h1::first-letter {
    font-size: 45px;
  }

  #quote {
    font-size: 18px;
  }

  #author {
    font-size: 13px;
  }

  .btn-main {
    font-size: 13px;
  }

  i {
    font-size: 12px;
    padding: 0;
  }
}
