@import url("./css2.css?family=Josefin+Sans:wght@500&family=Jost:ital,wght@0,400;0,700;1,800&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
#space-around {
  font-family: "Josefin Sans", sans-serif;
  color: #ffc;
  padding: 20px;
  margin: 20px;
  transition: transform 0.7s ease;
}
#space-around:hover {
  transform: scale(1.2);
  cursor: pointer;
}
#sade {
  width: 100%;
  height: 1000px;
  background-color: #0e0e23;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
#sade1 {
  width: 100%;
  height: auto;
  background-color: #0e0e23;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: start;
}
#sade2 {
  width: 100%;
  height: auto;
  background-color: #0e0e23;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-around;
}
#sade3 {
  width: 100%;
  height: auto;
  background-color: #0e0e23;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
#sade4 {
  width: 100%;
  height: auto;
  background-color: #0e0e23;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
}
#circle {
  width: 100px;
  height: 100px;
  background: #17a98a;
  border-radius: 50px;
  -moz-border-radius: 50px;
  transition: transform 0.7s ease;
}

#triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #4255d4;
  padding-top: 0px;
  transition: transform 0.7s ease;
}

#square {
  width: 100px;
  height: 100px;
  background: #ffcc00;
  transition: transform 0.7s ease;
}
#triangle2 {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 100px solid #ea1d5d;
  transition: transform 0.7s ease;
}

#rectangle {
  width: 200px;
  height: 100px;
  background-color: #00274d;
  transition: transform 0.7s ease;
}

.shape:hover {
  transform: scale(0.7);
  cursor: pointer;
}
.tooltip {
  width: 100px;
  background-color: #00274d;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  border: 5px solid transparent;
  border-top: 10px solid #00274d;
}
h4 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  padding-bottom: 20px;
}
a {
  color: #faebd7;
  text-decoration: none;
}
a:hover {
  color: #03dac6;
}

/* Footer section */

footer {
  width: 100%;
  background-color: #1d2027;
  box-shadow: 50px 20px 50px rgba(0, 0, 0, 0.5);
  display: relative;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  font-family: "Josefin Sans", sans-serif;
  color: #faebd7;
}