body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.text-color {
    fill: var(--text-h);
}

#container-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

#links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-h);
    gap: 0.5rem;
}

#logo {
    transition: transform 0.3s ease-in-out;
}
#logo:hover {
    transform: rotate(-10deg);
}