* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 450;
    color: #222;
}
.container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 640px;
    padding: 24px;
}
.info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 64px 0 0;
}
img {
    width: 108px;
    height: 108px;
    border-radius: 100%
}
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
h1 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}
h2 {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.projects {
    width: 100%;
}
.projects a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    background-color: #fff;
    text-decoration: none;
    color: #222;
    transition: .15s ease-out background-color, .15s ease-out border;
}
.projects a:hover {
    background-color: #f9f9f9;
    transition: .15s ease-out background-color, .15s ease-out border;
}
.projects a span {
    font-size: 12px;
    transform: scale(0.8);
    color: #999;
}
.footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}
.footer a {
    color: #aaa;
    transition: .15s ease-out color;
}
.footer a:hover {
    color: #666;
    transition: .15s ease-out color;
}
.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
    }
}