.cv_container {
    width: 96%;
    padding: 2%;
    aspect-ratio: 3 / 1;


    display: flex;
    justify-content: center;
    flex-direction: column;

    background-color: #588528;
}

.cv_textarea {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: inherit;
    justify-content: flex-end;
}

.cv_main {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
}

.cv_textarea {
    transition: all 0.8s;
    opacity: 0;
    transform: translateY(40px);
}

.cv_textarea.is_visible {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.cv_title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    align-self: flex-start;

    white-space: nowrap;
    gap: 3%;
}

.header {
    display: flex;
    align-items: center;
    margin: 2%;
}

.cv_image {
    width: 50%;
    height: auto;
}

.cv_bottom_line {
    margin-top: 2%;
}

@media screen and (max-width: 768px) {
    .cv_image, .cv_bottom_line {
        display: none;
    }

    .au_textarea {
        padding: 10% 0;
    }
}