body {
    margin: 0;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    --gap-to-line: 20px;
}

section#links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: var(--gap-to-line);
    border-right: 1px solid var(--sub-text-color);
}

section#links a {
    text-decoration: none;
    color: var(--sub-text-color);
    text-align: right;
    font-size: 24px;
}

section#links a:hover {
    color: var(--primary-color);
}

section#name {
    display: flex;
    flex-direction: column;
    padding-left: var(--gap-to-line);
    color: var(--text-color);
    font-size: 74px;
}

.primary {
    color: var(--primary-color);
    content: 'Designer';
}

#iCursor {
    animation: iCursor 1.5s infinite;
}

@keyframes iCursor {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}