@import url(style.css);
@import url(global.css);

.sobre-image-background {
    background-color: var(--green-blue-color);
    background-image: url("../img/bg-beach.png");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;

    position: relative;
    z-index: 0;
    margin-top: -2px;

    overflow: hidden;
}

.sobre-image-background .star-sobre {
    height: auto;
    width: 100%;
    max-width: 500px;
    margin-bottom: -10px;
}


#about-section {
    padding: 20px;
}

#about-section .about-title {
    width: 90%;
    height: auto;
    max-width: 600px;
}

#about-section blockquote {
    margin-top: 20px;
    padding: 10px;
    overflow: hidden;
    background-color: rgba(190, 233, 255, 0.6);
    position: relative;
    text-align: center;
    color: var(--green-blue-color);
}

#about-section blockquote p {
    padding: 20px 10px;
}

#about-section blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: var(--green-blue-color);
}