body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 스크롤바가 생기지 않도록 함 */
    background-color: #000;
    color: #fff;
    font-family: 'Pretendard', sans-serif; /* 예시 폰트 */
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 다른 콘텐츠들보다 뒤에 위치하도록 함 */
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 화면 전체 높이를 차지하도록 함 */
    text-align: center;
}

.memoji {
    width: 150px; /* 이모지 크기 조절 */
    margin-bottom: 20px;
}

h1 {
    font-family: 'Pretendard', sans-serif; /* 폰트 지정 */
    font-size: 5rem; /* 폰트 크기 */
    font-weight: 800; /* 폰트 굵기 (800 정도가 적당히 굵습니다) */
    letter-spacing: -1px; /* 글자 사이 간격 살짝 좁게 */
    color: white; /* 그림자 효과를 뺐을 경우, 선명한 흰색으로 */
    text-shadow: none; /* 이전 그림자 효과 제거 */
}

p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s;
}

.links a:hover {
    color: #00aaff; /* 마우스를 올렸을 때 색상 변경 */
}