/* FONT */
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap"); /* font-family: 'Kumbh Sans', sans-serif; */

/* COLORS */
:root {
  --Dark-cyan: hsl(185, 75%, 39%);
  --Very-dark-desaturated-blue: hsl(229, 23%, 23%);
  --Dark-grayish-blue: hsl(227, 10%, 46%);

  --Dark-gray: hsl(0, 0%, 90%);
}

/* RESETS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CODE */
body {
  font-family: "Kumbh Sans", sans-serif;
  background-color: var(--Dark-cyan);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background-image: url(./images/bg-pattern-top.svg),
    url(./images/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 35vw bottom 45vh, left 45vw top 45vh;
}

.container {
  margin: 0 auto;
  text-align: center;
}

.wrapper {
  max-width: 325px;
  max-height: 375px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  margin: 25px 25px 5px 25px;
}

.wrapper img {
  height: 140px;
}

.content img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 4px solid white;
  margin-top: -52px;
}

.content h2 {
  color: var(--Very-dark-desaturated-blue);
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}

.content h2 span {
  color: var(--Dark-grayish-blue);
  font-weight: 400;
}

.content p {
  color: var(--Dark-grayish-blue);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--Dark-gray);
  padding: 20px 50px;
  margin-top: 25px;
}

.footer .num {
  font-size: 18px;
  color: var(--Very-dark-desaturated-blue);
  font-weight: 700;
  margin-bottom: 5px;
}

.footer div p {
  font-size: 10px;
  letter-spacing: 1px;
}

/* ATTRIBUTIONS */
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (min-width: 376px) {
  body {
    background-position: right 48vw bottom 45vh, left 45vw top 58vh;
  }
}
