:root {
    --color-bg: #222831;
    --color-text: #DBD8E3;
    --color-primarry: #352F44;
    --color-secondary: #5C5470;
    --debugging-green: 1px solid green;
    --debugging-red: 1px solid red;
    --debugging-yellow: 1px solid yellow;
    --debugging-blue: 1px solid blue;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: 'Lora', serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    font-family: 'Lora', serif;
}

.container {
    text-align: center;
    height: 100vh;
}

.logo {
    margin-top: 50px;
}

.logo img {
    height: 100px;
    width: 100px;
    border: 1px solid var(--color-text);
    border-radius: 50%;
}

.tittle {
    margin-top: 20px;
}

.tittle h1 {
    color: var(--color-text);
    font-weight: 700;
}

.linktree {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.linktree a {
    color: var(--color-text);
    font-size: 18px;
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    width: 300px;
    padding: 10px 0px;
    transition: all 0.3s ease-in-out;
}

.linktree a:hover {
    cursor: url('../assets/pointermini.png'), auto;
    background-color: var(--color-primarry);
    box-shadow: 3px 3px 10px var(--color-secondary);
    transform: scale(1.1);
}

.linktree a:active {
    cursor: url('../assets/pointeractive.png'), auto;
}

.footer {
    margin-top: 30px;
    text-align: center;
    color: var(--color-text);
}

.pointer {
    cursor: auto;
}

.pointer:hover {
    cursor: url('../assets/pointermini.png'), auto;
}

.pointer:active {
    cursor: url('../assets/pointeractive.png'), auto;
}