*{
    margin: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

body{
    background-color: #040303;
    padding-bottom: 120px;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.About{
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    padding-bottom: 120px; 
}
.about-title h1{
    font-size: 7rem;
    margin-bottom: 3rem;
    font-family: 'IBM Plex Mono', monospace;
}
.about-content p{
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 10px;
    font-family: 'IBM Plex Mono', monospace;

}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .About {
        margin-top: 30px;
        padding: 15px;
        padding-bottom: 100px;
    }
    
    .about-title h1 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .about-content p {
        font-size: 1.2rem;
        line-height: 1.5;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .About {
        margin-top: 20px;
        padding: 1.5rem 1rem;
        padding-bottom: 80px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-title h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}
