.about-container {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0);
    opacity: 0;
    z-index: 1000;
}

.about-container.active {
    transform: scale(1);
    opacity: 1;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #ff69b4;
    color: #ffffff;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
}

.about-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px;
}

.about-content {
    padding: 5px;
    margin: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #121212;
    background: #ffe4e1;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
}

.close-about {
    background: #ffffff;
    border: none;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.close-about:hover {
    background: rgba(200, 200, 200, 0.5);
}

@media screen and (max-width: 768px) {
    .about-container {
        width: 100%;
        left: 0%;
        top: 0%;
    }

    .about-header {
        font-size: 15px;
        font-family: Arial, sans-serif;
        padding: 8px;
    }

    .about-main {
        padding: 5px;
    }

    .about-content {
        font-size: 14px;
        padding: 1px;
        margin: 5px;
    }

    .close-about {
        font-size: 14px;
        padding: 5px;
    }
}
