@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Montserrat&display=swap');

.about-container {
    margin: 100px 0;
    height: 100%;
    justify-content: center;
}

.about-personal {
    display: flex;
    justify-content: space-around;
    margin: 0 80px;
}

.about-text-container {
    display: flex;
    flex-direction: column;
}

.about-text {
    display: block;
    color: white;
    line-height: 1.9;
    font-family: 'Montserrat', sans-serif;
    width: 600px;

}

.about-fun-fact {
    display: flex;
    flex-direction: column;
    height: 350px;
    width: 400px;
    line-height: 1.8;
    text-align: center;
    color: #ece4db;
    font-size: 25px;
    font-family: 'Bebas Neue';
    text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
}

.about-fun-fact:hover {
    cursor: pointer;
}

.about-fun-fact span::selection {
    background: transparent;
}

#birds {
    opacity: 0;
    width: 100px;
    height: auto;
    user-select: none;
}

@media only screen and (max-width: 480px) {

    .about-container {
        margin: 0;
        margin-top: 60px;

    }

    .about-personal {
        flex-direction: column;
        margin: 0 20px;
    }

    .about-text {
        font-size: 14px;
        width: 100%;
    }

    .about-fun-fact {
        width: 100%;
        height: 250px;
        margin: 50px 0;
    }

}