/*
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%, 59%)
*/
* {
  color: hsl(229, 23%, 23%);
  font-size: 18px;
  font-weight: 700;
}

html, body {
  height: 100%;
  padding: 0;
  margin: 0;
  width: 100%;
}

body {
  align-items:center;
  background-image: url(../images/bg-pattern-top.svg), url(../images/bg-pattern-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: -300px -500px, 600px 400px;
  background-color: hsl(185, 75%, 39%);
  display: flex;
  font-family: 'Kumbh Sans', sans-serif;
  justify-content: center;
}

header {
  background-image: url(../images/bg-pattern-card.svg);
  height: 140px;
}

.card-container {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  height: 370px;
  width: 330px;
}

img {
  border-radius: 50%;
  border-style: solid;
  border-color: white;
  margin-top: -50px;
  width: 90px;
}

.middle-container {
  text-align: center;
}

h1 {
  margin-top: 20px;
}
h2 {
  font-size: 14px;
  font-weight: 300;
  color: hsl(0, 0%, 59%);
  margin-bottom: 28px;
}
.age {
  font-weight: 300;
  color: hsl(0, 0%, 59%);
}

.bottom-container {
  border-top-style: solid;
  border-width: 0.7px;
  border-color: hsl(0, 0%, 59%);
  display: flex;
  justify-content: space-around;
}

.nb-div{
  text-align: center;
  width:  80px;
}

h3 {
  margin-bottom: 0px;
  margin-top: 30px;
}

h4 {
  color: hsl(0, 0%, 59%);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-top: 5px;
}
.attribution {
  font-size: 11px;
  position: absolute;
    bottom: 0;
  text-align: center;
  width: 100%;
}
.attribution a { color: hsl(228, 45%, 44%); }
