@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #4CAF50;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.sns-links {
    margin-top: 20px;
}

.sns {
    display: inline-block;
    margin: 0 10px;
    font-size: 30px;
    color: #333;
    transition: transform 0.3s, color 0.3s;
    vertical-align: middle;
}

.sns svg {
    width: 40px;
    height: 40px;
    fill: #333;
}

.sns:hover {
    transform: scale(1.2);
    color: #4CAF50;
}

.sns.qiita {
    font-size: 30px;
    color: #3F8F4C;
    text-decoration: none;
    transition: color 0.3s;
}

.sns.qiita:hover {
    color: #7ac142;
}
