body {
    margin: 0;
    padding: 0;
    /* font-family: Arial, sans-serif; */
    font-family: 'Roboto', sans-serif; /* 변경된 글꼴 */
    /* background-color: #E0EFFF; */
    /* background-color: #3A3B3C; */

    background-color: #121212; /* 다크 모드 배경색 */
    color: #E0E0E0; /* 다크 모드 글자색 */
}

header {
    background-color: #1E1E1E; /* 다크 모드 헤더 배경색 */
    padding: 10px;
    padding-left: 0px;
    text-align: center;
    position: fixed; /* 상단 고정 */
    top: 100;
    left: 100;
    width: 100%; /* 전체 너비 */
    z-index: 100; /* 다른 요소들 위에 렌더링 */
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.5); /* 그림자 추가 */

    
    
}


h1 {
    margin: 0;
    /* color: #000; */
    color: #FFFFFF; /* 헤더의 글자색을 밝게 변경 */
    font-family: 'Roboto', sans-serif; /*귀여운 느낌의 글꼴 적용*/
    
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
}



h2 {
    margin: 0;
    color: #000;
    
    font-family: "Gaegu", sans-serif;
    font-weight: 700;
    font-style: normal;
    
}

p {
    margin: 0;
    color: #3A3B3C;
    
    font-family: "Gaegu", sans-serif;
    font-weight: 700;
    font-style: normal;

}


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    padding-top: 80px;
}




.main-title-j {
    margin: 0;
    /* color: #000; */
    color: E0E0E0;

    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: xxx-large;
}



.character-card {
    width: 90%; 
    max-width: 400px; 
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.1);
}

.character-card img {
    width: 100%; /* 이미지 폭을 카드 폭에 맞춤 */
    height: auto;
    aspect-ratio: 1 / 1; /* 이미지를 정사각형으로 설정 */
}





.character-card {
    width: 90%;
    max-width: 400px;
    background-color: #222222; /* 다크 모드에서 카드 배경색 */
    border-radius: 20px;
    margin-bottom: 30px;    
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2); /* 밝은 그림자로 변경 */
}

.character-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.character-info {
    padding: 5px;
    padding-left: 20px;
}

.character-info h2, .character-info p {
    margin: 5px 0;
    color: #E0E0E0; /*다크 모드에서의 텍스트 색상*/
}

















/* j. 글꼴들 */

.amatic-sc-regular {
  font-family: "Amatic SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.amatic-sc-bold {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}


.gaegu-light {
  font-family: "Gaegu", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.gaegu-regular {
  font-family: "Gaegu", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.gaegu-bold {
  font-family: "Gaegu", sans-serif;
  font-weight: 700;
  font-style: normal;
}


