@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playpen+Sans+Arabic:wght@100..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
  margin: 0px;
  padding: 0px;
}

body {
  display: flex;
  height: 100vh;
  width: 100vw;
  background-color: rgb(238, 238, 238);
  justify-content: center;
  align-items: center;
}

.cover {
  background-color: rgb(0, 0, 0);
  height: 640px;
  width: 640px;
  display: flex;
  flex-wrap: wrap;
}

.box {
  height: 200px;
  width: 200px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noMargin {
  margin-right: 0px;
}

.circle {
  background-color: rgb(255, 255, 255);
  height: 120px;
  width: 120px;
  border-radius: 150px;
  border: 25px solid rgb(0, 0, 0);
}

p {
  font-size: 260px;
  font-family: "Oswald", sans-serif;
  position: relative;
  bottom: 40px;
}

.cross {
  background-color: rgb(255, 255, 255);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}