:root {
    --nav-link-color-activate: rgb(48, 66, 84);
    ;
    /* You can change this color */
    --main-color: rgb(243, 238, 234);
    --green-color: rgb(89, 124, 142);
    --white-color: white;
    --pink-color: #FFCBE0;
    --blue-dark: #2F4156;
}

#page2_bgr {
    height: 760px;
    width: 100%;
    background-color: var(--main-color);
    position: relative;
}

.fredoka-font {
    font-family: "Fredoka", sans-serif;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.sen-font {
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#page2_info {
    position: absolute;
    top: 150px;
    left: 13%;
    display: flex;
    flex-direction: column;
    width: 30%;
    color: var(--blue-dark);
}

.fredoka-big {
    font-size: 84px;
    /* font-weight: 900; */
    font-weight: 700;
}

.cv-link, .tag-pink {
    z-index: 10;
    display: flex;
    align-items: center;
    background-color: var(--pink-color);
    /* màu hồng nhạt */
    padding: 15px 30px;
    border-radius: 50px;
    max-width: fit-content;
    gap: 50px;
    font-family: 'Poppins', sans-serif;
    color: #2b2e4a;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin: 30px 0px;
}

.cv-link:hover {
    background-color: #f3bcd4;
    cursor: pointer;
}

.cv-link i {
    font-size: 1.5rem;
}

.text-content {
    text-align: justify;
    font-weight: 100;
    font-size: 25px;
    margin-top: 50px;
}

.float_info {
    position: absolute;
    left: 55%;
    top: 0px;
    width: 415px;
}

.photo-wrapper {
    position: absolute;
    background-color: var(--green-color);
    width: 415px;
    height: 550px;
    overflow-x: hidden;
    /* ẩn tràn trái/phải */
    overflow-y: visible;
    /* padding: 0 20px;         Thụt vào 20px mỗi bên */
    box-sizing: border-box;
}

.foreground-img {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: calc(100% + 90px);
    /* Kéo ảnh rộng hơn để bị che 2 bên */
    transform: translateX(-45px);
    /* Đẩy ảnh sang trái để căn giữa phần không bị che */
    height: 600px;
    object-fit: cover;
    z-index: 2;
}

.background-block {
    background-color: var(--main-color);
    height: 150px;
    width: 100%;
}

#tag_pink_birthday {
    position: absolute;
    top: 350px;
    left: -90px;
    width: 100%;
    height: 50px;
    z-index: 10;
    background-color: var(--pink-color);
    color: var(--blue-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

#tag_pink_language {
    position: absolute;
    top: 455px;
    left: 315px;
    width: 100%;
    height: 50px;
    z-index: 10;
    background-color: var(--pink-color);
    color: var(--blue-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact {
    position: absolute;
    top: 550px;
    left: 0px;
    width: 100%;
    height: 290px;
    z-index: 10;
    background-color: var(--blue-dark);
    color: var(--white-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.contact > span {
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 5px;
    margin-bottom: 20px;
    margin-left: -40px;
    font-size: 1.6rem;
    font-weight: 100;
}

.contact-info > i {
    margin-right: 10px;
}