:root {
    --background-color: #fff;
    --text-color: #111;
    --highlight-color: #f39c12;
}

.darkmode {
    --background-color: #111;
    --text-color: #fff;
    --highlight-color: #f39c12;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

h1 {
    text-align: center;
    font-size: 110px;
    letter-spacing: 0.05em;
    padding-left: 0;
    padding-right: 0;
  }

#title-container {
    padding-top: 100px;
}

#socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.icon {
    cursor: pointer;
    height: 2rem;
}

.theme-switch {
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
}

.theme-switch svg {
    fill: var(--text-color);
}

.theme-switch svg:last-child {
    display: none;
}

.darkmode .theme-switch svg:first-child {
    display: none;
}

.darkmode .theme-switch svg:last-child {
    display: block;
}
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: 0.1s;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: difference;
}

ul li:hover ~ .cursor {
    transform: scale(6);
}

h1:hover ~ .cursor {
    transform: scale(6);
}