* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Poppins";
  }

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
     -webkit-transition: opacity .8s ease-out, visibility 0s linear .0s;
     -moz-transition: opacity .8s ease-out, visibility 0s linear .0s;
     -ms-transition: opacity .8s ease-out, visibility 0s linear .0s;
     -o-transition: opacity .8s ease-out, visibility 0s linear .0s;
}

.about {
    text-align: justify;
}

.intro {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience {
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievements {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 360px) {
    .experience {
        justify-content: center;
        align-items: center;
    }
}