body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.container {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.profile {
    margin-bottom: 60px;
}

.profile-image {
    width: 100%;
    max-width: 120px; /* 최대 너비 설정 */
    height: auto;
    border-radius: 40%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .profile-image {
        max-width: 100px; /* 모바일에서의 크기 조정 */
    }
}

.profile h2 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile p {
    font-size: 12px;
    color: #555;
}

.profile a {
    color: #7c7c7c;
    text-decoration: none;
}

.profile a:hover {
    text-decoration: underline;
}

.links button {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    font-size: 18px;
    background-color: #ffffff;
    color: #333;
    border: 2px solid #fcfcfc;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.links button:hover {
    background-color: #000000;
    color: white;
}


@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }
}
