@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: #f7f7f7;
  text-align: center;
  color: #333333;
}

.container {
  min-height: 100vh;
  display: grid;
  place-content: center;
}

h1 {
  font-size: 32px;
  margin-block: 1rem;
}

h2 {
  font-size: 20px;
}

a {
  display: inline-block;
  background-color: darkblue;
  color: #f7f7f7;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50vmax;
  margin-bottom: 24px;
  transition: 300ms;
}

a:hover {
  opacity: .8;
}

.d-flex {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.d-flex>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 29px;
  font-weight: 600;
  border-inline-end: 1px solid #ccc;
  flex: 0 0 80px;
}

.d-flex>div:last-child{
  border: 0;
}

.d-flex>div>span {
  font-size: 18px;
  font-weight: 300;
}