* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body,
html {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* transition: 500ms ease-in-out; */
    gap: 20px;
}

body.white {
    background-color: white;
    /* transition: 500ms ease-in-out; */
}

img {
    width: 100px;
    border-radius: 50%;
    filter: grayscale();
    margin-bottom: 20px;
    border: 1px solid rgb(80, 80, 80);
    padding: 2px;
}

img:hover {
    filter: none;
    transition: filter 1000ms;
}

ul {
    display: flex;
    gap: 15px;
}

li {
    display: flex;
    transition: transform 300ms;
}

li:hover {
    transform: scale(1.5);
}

p {
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    mix-blend-mode: difference;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    color: white;
}

svg.white {
    color: black;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.disabled {
    opacity: 0.2;
}

.disabled:hover {
    pointer-events: none;
    cursor: default;
    transform: scale(1);
}

#DarkModeToggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background-color: white;
    mix-blend-mode: difference;
    border-radius: 50%;
    cursor: pointer;
}

.tab {
    cursor: pointer;
}

.content {
    display: none;
}