*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
}
body{
    background-color: black;
    color: white;
}
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1rem;
}
.about .heading{
    position: relative;
    font-size: 40px;
    margin-top: 2rem;
}
.heading span{
    color: #0ef;
}
.about-img{
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-img img{
    width: 90%;
    border-radius: 50%;
    border: .2rem solid #0ef;
}
.about-img .circle-spin{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem solid black;
    border-bottom: .2rem solid black;
    border-left: .2rem solid #0ef;
    border-right: .2rem solid #0ef;
    animation: aboutSpinner 8s linear infinite;
}
.about-content{
    text-align: center;
}
.about-content p{
    font-size: 1.6rem;
    margin: 1rem 0 2rem;
    padding-left: 15rem;
    padding-right: 15rem;
    text-align: justify;
    line-height: 25px;
}
.animate-scroll{
    transition: 1s ease;
    transition-delay: calc(.3s / var(--i));
}
.about .animate-scroll{
    transition-delay: calc(.3s * var(--i));
    width: 0;
}
@keyframes aboutSpinner {
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@media screen and (max-width: 600px){
    .about-content p{
        padding-left: 0;
        padding-right: 0;
        margin-left: 3rem;
        margin-right: 3rem;
    }
    button{
        margin-top: 2rem;
    }
}
