@charset "UTF-8";

#sobre {
    color: var(--colorwhite);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

#flexcontent {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

#photomika {
    background-image: url(../assets/imgs/fotoAutor.jpg);
    background-size: cover;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;
    animation: float 1.1s ease-in-out infinite alternate;
    margin-bottom: 2em;
}

#autodescricao {
    align-self: flex-start;
    padding: 1em;
}

#autodescricao h3 {
    font: normal bold 1.3em var(--fonthover);
    margin-bottom: 0.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.548);
}

#autodescricao p {
    text-align: justify;
    line-height: 1.5em;
    margin-bottom: 1em;
}

#autodescricao ul {
    list-style-position: inside;
}

@media screen and (min-width: 992px) {
    #flexcontent {
        flex-flow: row nowrap;
        justify-content: center;
    }

    #photomika {
        flex: 1.2 0 300px;
        margin-right: 1.4em;
    }

    #autodcesricao {
        flex: 1 1 500px;
    }
}

