.header {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px 4px #05060d95;
    margin: 0;
}

.about {
    display: flex;
    justify-content: center;
    padding: 0 50px 100px 50px;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chibiImage {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.chibiImage:hover {
    transform: scale(1.05) rotate(5deg);
}

@media (max-width: 760px) {
    .header {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .title {
        font-size: 40px;
    }

    .about {
        padding: 0 20px 50px 20px;
    }

    .card {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .image {
        flex: 0 0 auto;
    }
}