body {
    background-color: #e0f7fa;
}

.profile-card {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #769ec7;
    margin-bottom: 15px;
}

h1 {
    margin: 10px 0 5px;
    font-size: 24px;
    color: #333;
}

h2 {
    margin: 0;
    font-size: 16px;
    color: #777;
}

p {
    margin: 15px 0;
    font-size: 14px;
    color: #555;
}

.social-links a {
    margin: 0 8px;
    text-decoration: none;
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    body {
        height: auto;
    }

    .profile-card {
        width: 100%;
        max-width: 300px;
        padding: 10px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 14px;
    }

    p {
        font-size: 13px;
    }

    .social-links a {
        font-size: 13px;
    }
}