@import url(https://fonts.googleapis.com/css?family=Open+Sans:600);

body {
    font-family: 'Open Sans', sans-serif;
}

.sobre {
    position: relative;
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff;
}

.texto {
    position: absolute;
    width: 650px;
    left: 50%;
    margin-left: -225px;
    height: 40px;
    top: 20%;
    margin-top: -15px;
}


p {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}

.palavra {
    position: absolute;
    width: 320px;
    opacity: 0;
}

.letter {
    display: inline-block;
    position: relative;
    float: left;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    transform: rotateX(-90deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.escura {
    color: #44ad69;
}

.clara {
    color: #2980b9;
}

.sobre img {
    margin-top: 10%;
    width: 220px;
    height: 70px;
    position: absolute;
    transform: translateY(0px);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}