/* 전체 페이지 기본 스타일 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: white;
    padding: 20px; /* 패딩을 줄임 */
    margin: 40px; /* 모바일 뷰를 위한 마진 추가 */
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    width: 90%; /* 컨테이너 너비를 화면 너비에 맞게 조정 */
    max-width: 500px; /* 최대 너비 설정 */
}

h1 {
    font-size: 1.35rem; /* 모바일에서 적당한 제목 크기 */
    color: #FF3E94;
}

p {
    font-size: 0.85rem; /* 모바일에서 적당한 본문 텍스트 크기 */
    color: #2A151F;
}