:root {
    --primary-color: #2b0023;
    --secondary-color: #510042;
    --third-color: #34012b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.7rem;
    background-color: var(--primary-color);
    background-image: radial-gradient(var(--third-color) 2px, transparent 2px),
        radial-gradient(var(--third-color) 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-attachment: fixed;
    color: #fff;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 6px;
    border: 3px solid var(--primary-color);
}

.title-second-links{
    margin-top: 2rem;
    font-weight: 500;
}

.container {
    text-align: center;
    height: 100%;
    padding: 20px;
}

.container h1 {
    margin-bottom: 20px;
}

.link {
    display: block;
    margin: 10px 0;
    padding: 10px;
    color: #fff;
    background-color: var(--secondary-color);
    border-radius: 5px;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
    font-family: "SUSE Mono", sans-serif;
    text-decoration: none;
    z-index: 0;
    font-size: 1.2rem;
}

.link:hover {
    background-color: var(--secondary-color);
}

.link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #f6bd03cc;
    transform: translateY(-50%);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    border-radius: 32px;
    z-index: -1;
}

.link:hover::after {
    width: 130%;
    top: -10px;
    height: 130%;
}

.main-links {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.icon {
    width: 40px;
    height: 40px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

    margin-bottom: 2rem;
}

.profile-picture {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.profile-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.profile-name {
    font-weight: bold;
    font-size: 1.9rem;
    color: #fff;
}

.profile-description {
    font-size: 1rem;
    color: #ddd;
}