@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Dosis:wght@200..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playwrite+DE+SAS:wght@100..400&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow-y: hidden; /* hides vertical scrollbar */
    
}

p{
    font-family: 'Dosis', sans-serif;
}

.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: none;
    /* No background color */
    padding: 40px 20px;
}

.about-box {
    background: rgba(255, 255, 255, 0.2);
    /* transparent white box */
    backdrop-filter: blur(10px);
    /* adds a nice glass-like effect */
    border-radius: 16px;
    padding: 40px;
    max-width: 850px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Play', sans-serif;
    color: #fff;
    /* Adjust color based on your background */
    line-height: 1.7;
    animation: fadeIn 0.8s ease-in-out;
}

.about-box h1 {
    text-align: center;
    font-family: 'Josefin Sans', cursive;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.3rem;
}

.about-box p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    text-align: justify;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-link {
    text-align: center;
    margin-top: 40px;
    /* more space from paragraphs */
    padding-top: 39px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.portfolio-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    letter-spacing: 0.5px;
}

.portfolio-link a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}
