@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --background-color: #FFFFFF;
    --text-color: #000000;
    --link-border: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    padding: 0 16px 20px;
}

.container {
    max-width: 730px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.profile {
    text-align: center;
    padding-top: 12px;

}

.profile-logo {
    max-width: 275px;
    height: auto;
}

.links-container {
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.link-item {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: transform 0.15s ease-in-out;
}

.link-item:hover {
    transform: scale(0.895);
}

.link-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    border: 1px solid var(--link-border);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.08);
}