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

body {
  display: grid;
  justify-content: center;
  font-family: 'Mulish', sans-serif;
  background-color: #121214;
  padding: 72px 104px;
}

header h1 {
  color: #02799D;
  font-size: 58px;
  font-weight: 900;
  line-height: 73px;

}

header p {
   color: #E1E1E6;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 63px;
  line-height: 40px;

}
main {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 48px 64px;
  overflow: hidden;
 

}

.card {
  border-radius: 8px;
  border: 2px solid #323238;
  background: #202024;
  color: #E1E1E6;
}

.card h2 {
  color: #E1E1E6;
  font-size: 36px;
  font-weight: 900;
  padding: 24px 32px 0;
  
}

.card p {
  font-size: 18px;
  font-weight: 600;
  padding: 24px 32px 32px;
}