body{
    background: radial-gradient( #2a4964 , #1e212b 90%);
    font-family: 'Segoe UI', sans-serif;
    margin-top: 3%;


}



#hero{
    display: flex;
    flex-direction: column;
    justify-self: center;
    color: aliceblue;
    border: 4px solid aliceblue;
    border-radius: 20px;
    text-align: center;

    width: 80vw;
    justify-content: space-between;
    font-size: clamp(0.6rem,2vw,1.5rem);
    padding: 2% 

}

#top{
    display: flex;
    justify-self: center;
    
    max-width: 70;
    height: auto;
}

#a1{
    border-bottom: 3px dotted aliceblue;
    padding-bottom: 10%;
}

#counter{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#hero2{
    margin-top: 40px;
    margin-bottom: 40px;

}

.hidden{
    opacity: 0;
    transform: translateY(-100%);
    transition: all 1s ease;
}
.show{
   opacity: 1;
   transform: translateY(0%);
}

@property --from {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.inc {
  transition: --from 1s;
  counter-reset: int var(--from);
  animation: counter var(--time, 1000) forwards ease-in-out;
}

.inc::after {
  content: counter(int);
}

@property --from {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

@keyframes counter {
  to {
    --from: var(--to, 100);
    }}