

body {
    margin: 0;
    background-color: #001f3f;
  display: flex;
  justify-content: center;
  align-items: center;
}

body, html {
    height: 100%;
  }

  .shape {
    /* height: 150px;
    width: 150px;
    background-color: #0074d9;
    border-radius: 80px;
    margin-bottom: 30px;
    float: left;
    margin-right: 20px; */
    /* ABOVE CSS WORKS ...*/

    position: relative;
	width: 157.5px;
	height: 150px;
	background: white;
    clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
    rotate: 0deg;
  }
  
  .shape2 {
    border-radius: 30px;
  }
  
  .shape3 {
    border-radius: 5px;
  }


/*      WORKS!!!    */
/* .container {
	margin: 20px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    border: 1px solid blue;
}

.pentagon-1 {
	position: relative;
	width: 157.5px;
	height: 150px;
	background: black;
    clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
    rotate: 40deg;
}

.pentagon-2 {
	position: relative;
	width: 157.5px;
	height: 150px;
	background: red;
    clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
    rotate: 0deg;
} */




/* the followig css works ... */
/* .pentagon {
    position: relative;
    width: 54px;
    box-sizing: content-box;
    border-width: 50px 18px 0;
    border-style: solid;
    border-color: red transparent;
  }
  .pentagon:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    top: -85px;
    left: -18px;
    border-width: 0 45px 35px;
    border-style: solid;
    border-color: transparent transparent red;
  } */



/* .hexagon {
    width: 200px;
    aspect-ratio: .866; 
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    background: radial-gradient(#8A9B0F,#3B8686);
    rotate: 0deg;
  } */
  
  body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-content: center;
    
  }