:root {
    --main: #80bd1d;
}

*{
    box-sizing: border-box;
    margin:0; padding: 0;
}
html{
    height:100vh;
}

body{
    background-color: var(--main);
    padding:8em;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}
main{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  width: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  font-family: 'Open Sans', sans-serif;
  }
  
  #s1 { 
    grid-area: 1 / 1 / 2 / 2;
  }
  #s2 { 
    grid-area: 1 / 2 / 2 / 3;
  }



  #s2{
    background-color: rgba(255,255,255,0.8);
    b-webkit-box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.2);
    box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.2);
    border-radius: .5em;
  }


 .set {
    grid-area: 1 / 2 / 2 / 3;
    display:block; aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }
.div1 { 
  grid-area: 1 / 1 / 2 / 2; 
  background:white;
  color:#444;
  border-radius: 40% 40% 5% 40%;
}
.div2 {
  grid-area: 1 / 2 / 2 / 3;
  background: #ff360c;
  color:white;
  border-radius: 40% 40% 40% 5%;
}
.div3 {
  grid-area: 2 / 1 / 3 / 2;
  background: #3e3997;
  color:white;
  border-radius: 40% 5% 40% 40%;
}
.div4 {
  grid-area: 2 / 2 / 3 / 3;
  background: #00563b;
  color:white;
  border-radius: 5% 40% 40% 40%;
}

.set .block{
  align-items: center;
  display: flex;
  justify-content: center;
  text-align:center;
  overflow:hidden;
}
.set .block *{
  white-space:nowrap;
}



@keyframes rotate {
    0%  { transform: rotate(0deg); }
    100%{ transform: rotate(360deg); }
}


#rotatingDivINV1{
    border-radius:50%;
       background-image: conic-gradient(#80bd1d,  transparent);
  display:inline-block;
  height:80px; width:80px;
  vertical-align:top;

}
#rotatingDivINV1:after{
    content:'';
    height:100%;
    width:100%;
    background:#ff360c;
    z-index:5;
    display:block;
    transform: scale(.5);
    border-radius:50%;
}

#rotatingDivINV2{
    border-radius:50%;
       background-image: conic-gradient(#80bd1d,  transparent);
  display:inline-block;
  height:80px; width:80px;
  vertical-align:top;
}
#rotatingDivINV2:after{
    content:'';
    height:100%;
    width:100%;
    background:#00563b;
    z-index:5;
    display:block;
    transform: scale(.5);
    border-radius:50%;
}

.inv1, .inv2{
  font-size:.9vw;
}

.total{
  /* margin:2vw; */
  font-size:2vw;
  text-align:center;
  /* line-height:150%; */
  height: 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.color{
  color:#ff360c;
}