body {
    background: linear-gradient(to bottom, #8e2de2, #4a00e0); /* 배경: 보라색 그라데이션 */
    color: white; /* 글자색: 하얀색 */
    display: flex; /* Flexbox: 요소를 자유자재로 배치하는 마법 */
    flex-direction: column; /* 세로 방향으로 정렬합니다. */
    align-items: center;    /* 가로 기준 가운데 정렬 */
    justify-content: center; /* 세로 기준 가운데 정렬 */
    min-height: 100vh;      /* 화면 전체 높이를 꽉 채웁니다. */
    margin: 0;
    font-family: sans-serif;
}

.profile {
    text-align: center;
    margin-bottom: 30px;
}

img {
    border-radius: 50%;
    border: 3px solid white;
    width: 120px;
    height: 120px;
}

h1 {
    margin: 15px 0 5px 0;
}

p {
    margin: 0;
    opacity: 0.9;
}

.btn {
    display: block;
    background: white;
    color: #4a00e0;
    text-decoration: none;
    padding: 15px 20px;
    margin: 10px;
    border-radius: 30px;
    width: 280px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

/* 마우스를 올렸을 때(Hover) 살짝 위로 올라가는 효과 */
.btn:hover {
    transform: translateY(-3px);
}