@import url('https://fonts.googleapis.com/css2?family=Gasoek+One&display=swap');


.team-container {
    background-color: #eecb86;

    height: 400px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.team-pic {
    width: 350px;
    /* 이미지 크기 지정 (원하는 크기로 조정) */
    height: auto;
    border-radius: 10px;
    /* 모서리를 둥글게 */
}

.team-info {
    width: 350px;
    /* 이미지와 같은 크기로 설정 */
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 내용 가운데 정렬 */
    text-align: center;
}

.p-3.mb-4.bg-body-tertiary.rounded-3 {
    position: relative;
    /* 내부 요소를 절대 위치로 배치할 수 있도록 설정 */
    padding-bottom: 60px;
    /* 버튼이 겹치지 않도록 하단 여백 추가 */
}

#team-add {
    bottom: 10px;
    /* 아래쪽 여백 */
    right: 10px;
    /* 오른쪽 여백 */
    padding: 10px 20px;
    /* 버튼 크기 조절 */
    float: right;

    background-color: #f26d10;
    color: ivory;
    border-radius: 20px;
    border-color: transparent;

    height: 45px;

    transition: transform 0.3s ease;

    margin-right: 200px;
}


#team-add:hover {
    cursor: pointer;
    transform: scale(1.05);
    /* hover 시 그림자 효과 */
    cursor: pointer;
}

.rounded-profile {
    margin-top: 10px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}



.team-card {
    width: 210px;
    max-width: 100%;
    margin: auto;

    border-radius: 12px !important;

    margin-left: 0px;
    margin-right: 0px;

    border-color: #f4ebce !important;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: scale(1.05);
    /* 카드 크기를 1.05배 확대 */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    /* hover 시 그림자 효과 */
    cursor: pointer;
    /* 마우스 포인터 변경 */
}



.member-mbti {
    background-color: #6f8b4f !important;
    width: 60px !important;
    height: 25px !important;
    border-radius: 60px;
    color: #fefaef;
    font-size: 16px;

    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;

}

.button-container {
    display: flex;
    justify-content: right;
    background-color: #eecb86;
    padding-right: 70px;
    padding-bottom: 30px;
}

.team-introduce {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.team-sentence {
    font-size: 40px !important;
    margin-bottom: 15px;

    font-family: "Gasoek One", serif !important;
    font-weight: 400 !important;
    font-style: normal !important;

    margin-top: 15px;
}

.team-info {
    margin-top: 40px;
    font-weight: 400;
    width: 340px;
}

.team-info>p {
    font-size: 21px !important;
}

.bold {
    font-weight: 800;
    font-size: 22px !important;
}

.bumeok {
    font-size: 24px !important;
}

.github-address {
    background-color: #6f8b4f;
    border-radius: 5px;
    color: ivory;
    width: 160px;
    align-items: center;

    margin-top: 20px;
}

.github-address:hover {
    background-color: #93bc64;
}

.fullscreen-div {
    position: fixed !important;
    /* 화면 전체를 덮도록 설정 */
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;

    background-color: rgba(0, 0, 0, 0.5) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 2rem !important;

    z-index: 200 !important;

    pointer-events: none !important;
}

.display-none {
    display: none !important;
}