/* General information section */
.general-information {
    margin: 2.5rem;
    padding: 0 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.general-information h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.project-emoji {
    font-size: 4rem;
    position: absolute;
    z-index: 1;
    transform-origin: center;
}

.project-emoji-1 {
    top: -30px;
    left: 10%;
    animation: playfulFloat 3s infinite ease-in-out alternate;
}

.project-emoji-2 {
    top: -20px;
    right: 15%;
    animation: playfulFloat 4s infinite ease-in-out alternate-reverse;
}

.project-emoji-3 {
    bottom: -30px;
    left: 20%;
    animation: playfulFloat 3.5s infinite ease-in-out alternate;
}

.project-emoji-4 {
    bottom: -20px;
    right: 10%;
    animation: playfulFloat 5s infinite ease-in-out alternate-reverse;
}

.general-information-container {
    margin: 50px 0px;
    background-color: #F8F9FA;
    padding: 30px;
}

@keyframes playfulFloat {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(8deg);
    }
    100% {
        transform: scale(1) rotate(-8deg);
    }
}

/* mobile */
@media (max-width: 768px) {
    .general-information {
        margin: 1.5rem;
        padding: 0 0.5rem;
    }

    .general-information h3 {
        font-size: 1.5rem;
    }

    .project-emoji {
        font-size: 3rem;
    }

    .project-emoji {
        font-size: 3rem;
    }

    .project-emoji-1 {
        top: -30px;
        left: 0%;
    }
    .project-emoji-2 {
        top: -30px;
        right: 5%;
    }
    .project-emoji-3 {
        bottom: -35px;
        left: 5%;
    }
    .project-emoji-4 {
        bottom: -35px;
        right: 5%;
    }

    .general-information-container {
        margin: 30px 0px;
        padding: 20px;
    }
}