*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg,rgb(20, 249, 195),white,rgb(33, 113, 251));
}
.main{
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    background-color: blue;
    border-radius: 20px;
}
.star{
  width: 200px;
  height: 200px;
  background-color: white;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  margin: 50px auto;
}