@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: #3a362b;
    text-align: center;
    color: #FFFFFF;
}

.container {
  min-height: 100vh;
  display: grid;
  place-content: center;
}

h1 {
  font-size: 32px;
  margin-block: 1rem;
}

h2 {
  font-size: 20px;
}

img {
	max-width: 200px;
}

.d-flex {
  display: flex;
  gap: 0px;
  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;
}

ul {
	text-align: justify;
}

ul.social {
	display: flex;
	justify-content: center;
	list-style-type: none;
	padding-inline-start: 0;
	margin: 20px 0;
}

ul.social li a {
	font-size: 20px;
	margin: 15px;
}

a {
	color: #FFFFFF;
	text-decoration: none;
	font-family: arial;
}