body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    background-color: #e9eef2;
    color: #24272B;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}
.profile {
    text-align: center;
    margin-bottom: 30px;
}
.profile img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 10px;
}
h1 {
    margin: 10px 0 5px;
    font-family: "Mitr", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
}
h2 {
    font-size: 24px;
}
p {
    margin: 0;
    font-size: 16px;
    color: #8C99A5;
    line-height: 36px;
}
.section {
    margin-top: 30px;
    font-weight: bold;
    text-align: center;
    color: #8C99A5;
}
.link {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    text-decoration: none;
    color: #24272B;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    }
.link:hover {
    transform: translateY(-2px);
}
.link i {
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
    text-align: center;
 }
