@import url("https://fonts.googleapis.com/css2?family=Coiny&family=Dosis:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-size: 12px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --darkBlue: #202975;
  --midBlue: #4E619C;
  --lightBlue: #A3A8DF;
  --darkOrange: #CB4E29;
  --lightOrange: #E3773D;
  --lime: #DAD34D;
  --green: #168F61;
  --black: #000000;
  --white:#FFFEFF;
}

/* -------------------------------------------------------------------------- */
/*                                   general                                  */
/* -------------------------------------------------------------------------- */
h1 {
  font-size: 6rem;
  font-family: "coiny";
  color: var(--black);
  padding: 0 5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 6rem;
  font-family: "coiny";
  color: var(--white);
  text-align: center;
  padding-top: 8rem;
}

h3 {
  font-size: 1.8rem;
  font-family: "dosis";
  font-weight: 700;
  color: var(--black);
}

h4 {
  font-size: 3.125rem;
  font-family: "coiny";
  color: var(--black);
}

h5 {
  font-size: 1rem;
  font-family: "dosis";
  font-weight: 600;
  color: var(--black);
}

p {
  font-size: 1.3rem;
  font-family: "montserrat";
  font-weight: 600;
  color: var(--white);
  line-height: 215%;
}

/* -------------------------------------------------------------------------- */
/*                                   header                                   */
/* -------------------------------------------------------------------------- */
/* nav {
    position: relative;
} */
nav {
  list-style: none;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  font-size: 1.2rem;
  background-color: var(--darkOrange);
  color: var(--white);
}
nav .left {
  display: flex;
  align-content: space-around;
  align-items: center;
  text-align: center;
}
nav .left img {
  margin: 1rem 2rem;
  height: 75px;
}
nav .right {
  display: flex;
  width: 40%;
  justify-content: space-around;
  align-items: center;
}

.menu {
  display: flex;
}
.menu li {
  padding: 1rem;
  list-style-type: none;
}
.menu li a {
  text-decoration: none;
  color: var(--white);
  display: block;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.button {
  background-color: var(--green);
  /* width: 20rem; */
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  border-radius: 62px;
  border-style: none;
  color: var(--white);
}

/* -------------------------------------------------------------------------- */
/*  body  */
/* -------------------------------------------------------------------------- */
#home {
  background-color: var(--darkBlue);
  height: 80vh;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#home .box {
  background-color: var(--lime);
  width: 60rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 3rem;
  justify-content: center;
  border-radius: 150px;
  z-index: 100;
  margin-bottom: 4rem;
}

.cta {
  background-color: var(--green);
  margin-bottom: 5rem;
  /* width: 20rem; */
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  border-radius: 62px;
}

#beigeCat {
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 101;
}
#beigeCat img {
  height: 40rem;
}

#peekingCatAnimation {
  width: 100%;
  width: 30%;
  top: 0rem;
}

#catBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* .home::before{
    content: url(smiley.gif);
    position: absolute;
    left: 0;
    top: 0;
    this was for the cat peeking
} */
#yarnCatAnimation {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

#about {
  background-color: var(--midBlue);
  height: 90vh;
  color: var(--white);
}
#about #chairCat {
  width: 60%;
}
#about .information {
  padding: 50px 50px;
  background-color: var(--darkOrange);
  border-radius: 63px;
  width: 40%;
  height: 50%;
  margin-right: 200px;
}

#help {
  background-color: var(--darkBlue);
  height: 100vh;
}
#help p {
  color: var(--white);
}
#help .tag {
  background-color: var(--lime);
  margin-bottom: 6rem;
  width: 25rem;
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
  border-radius: 62px;
}
#help #pillowAnimation {
  width: 50%;
}
#help .helpRight {
  width: 60%;
}

.sectionMarker {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*                                   footer                                   */
/* -------------------------------------------------------------------------- */
footer {
  display: flex;
  background-color: var(--darkOrange);
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}
footer .leftFooter img {
  height: 20rem;
}
footer .rightFooter .icon {
  color: black;
  background-color: white;
}
footer .menu {
  display: flex;
  flex-direction: column;
}
footer .menu li {
  text-decoration: none;
  color: var(--white);
  display: block;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

/* ----------------------------------- 404 ---------------------------------- */
.errorPage {
  background-color: var(--darkBlue);
  height: 100vh;
  width: 100vw;
}
.errorPage .errorTitle {
  background-color: var(--midBlue);
  width: 100vw;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.errorPage .errorTitle h1 {
  font-size: 10rem;
  margin: 0;
  color: var(--lime);
}
.errorPage .errorTitle .h3 {
  font-size: 2.8rem;
  color: var(--white);
  margin-top: -12rem;
  font-family: "dosis";
  font-weight: 700;
}
.errorPage .errorBottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.errorPage .errorBottom h5 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: var(--white);
}
.errorPage .errorBottom #yarnCatAnimation {
  width: 80%;
}
.errorPage .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.errorPage .button a {
  text-decoration: none;
  color: var(--white);
  font-size: 2rem;
  font-family: "dosis";
  font-weight: 700;
}
.errorPage .errorLogo {
  position: absolute;
  bottom: 5%;
  right: 1%;
}
.errorPage .errorLogo a, .errorPage .errorLogo img {
  width: 6rem;
}/*# sourceMappingURL=main.css.map */