@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --red: hsl(0, 78%, 62%);
  --cyan: hsl(180, 62%, 55%);
  --orange: hsl(34, 97%, 64%);
  --blue: hsl(212, 86%, 64%);
  --very-dark-blue: hsl(234, 12%, 34%);
  --grayish-blue: hsl(229, 6%, 66%);
  --very-light-gray: hsl(0, 0%, 98%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: inherit;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--very-light-gray);
  padding: 0 1rem;
}
@media screen and (max-width: 480px) {
  body {
    padding: 0 2rem;
  }
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 475px;
  margin: 4rem 0;
  color: var(--very-dark-blue);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header {
    max-width: 350px;
  }
}
.header__titles-main, .header__titles-second {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: 0.25px;
}
@media screen and (max-width: 375px) {
  .header__titles-main, .header__titles-second {
    letter-spacing: 0.15px;
  }
}
.header__titles-main {
  font-weight: 200;
}
.header__titles-second {
  font-weight: 600;
}
.header__desc {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.1px;
  color: var(--grayish-blue);
}

.box {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 3.25rem;
  max-width: 350px;
  width: 100%;
  height: 250px;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--grayish-blue) 0px 6px 12px 0px;
}
@media screen and (max-width: 480px) {
  .box {
    height: 222px;
    padding-right: 1.5rem;
    gap: 1.75rem;
  }
}
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: var(--box-color, black);
}
.box--red {
  --box-color: var(--red);
}
.box--cyan {
  --box-color: var(--cyan);
}
.box--orange {
  --box-color: var(--orange);
}
.box--blue {
  --box-color: var(--blue);
}
.box__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 480px) {
  .box__content {
    gap: 0rem;
  }
}
.box__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--very-dark-blue);
}
.box__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.1px;
  color: var(--grayish-blue);
}
.box__icon {
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  margin-right: -0.5rem;
}
@media screen and (max-width: 475px) {
  .box__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  height: 530px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
  }
}
.container__left, .container__middle, .container__right {
  flex: 1;
}
.container__middle {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

footer {
  margin-top: auto;
}

.attribution {
  font-size: 0.75rem;
  text-align: center;
}
.attribution a {
  text-decoration: underline;
}
.attribution a:hover {
  color: var(--blue);
}/*# sourceMappingURL=main.css.map */