/* define color variables */
:root {
  --color-cyan: #a8d8ea;
  --color-purple: #aa96da;
  --color-pink: #fcbad3;
  --color-yellow: #ffffd2;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: "Montserrat", sans-serif;
}

body {
  box-sizing: border-box;
  min-width: 98vh;
}

.nav {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-purple);
  box-shadow: 0 0 5px var(--color-pink);
}

.nav__header {
  font-size: 2rem;
}

.nav__status {
  font-size: 1.5rem;
}

.main {
  width: 90%;
  margin: 0 auto;
}
.hero {
  display: flex;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.5rem 0rem var(--color-pink);
  /* skew to right */
  transform: skew(-5deg);
}

.hero__text {
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--color-purple);
}

.hero__text__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero__text__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.footer {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  color: var(--color-purple);
}

.footer__follow {
  display: flex;
}
.footer__follow svg {
  width: 3rem;
  height: auto;
  margin-left: 1rem;
  cursor: pointer;
}

code {
  background-color: var(--color-yellow);
  padding: 0.5rem;
}

.usage {
  margin-top: 5rem;
  color: var(--color-purple);
  font-size: 1.6rem;
  line-height: 2.5rem;
}

.usage ul {
  margin: 2rem 0rem;
  padding-left: 2rem;
}

.usage ul li {
  margin: 1rem 0rem;
}

.usage__title {
  font-size: 2.5rem;
  border-bottom: 0.3rem solid var(--color-pink);
  display: inline-block;
  margin-bottom: 2rem;
}
