body {
    margin: 0;
    text-size-adjust: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    color: var(--black);
}
* {
    box-sizing: border-box;
}
.wallpaper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.wallpaper > img {
    filter: grayscale(1);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    user-select: none;
    opacity: 0.75;
}
.wallpaper > .navbar {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
    padding: 20px;
    z-index: 100;
    user-select: none;
}
.wallpaper > .navbar a {
    padding: 10px 20px;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    border-radius: 50px;
}
.wallpaper > .navbar a[selected] {
    background-color: var(--black);
    color: var(--white);
}
.wallpaper > .content {
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    position: relative;
}
.wallpaper > .content > .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0.5;
    filter: blur(50px);
    border-radius: 16px;
    z-index: -1;
}
.wallpaper > .content > .title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
}
.wallpaper > .content > .role {
    font-size: 35px;
    line-height: 25px;
    font-weight: 400;
}

.container {
    background-color: var(--black);
    color: var(--white);
    width: 100%;
    height: max-content;
    padding: 125px 15%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

body > .container:nth-child(2n+1) {
    background-color: var(--white);
    color: var(--black);
}

.container > .title {
    font-size: 35px;
    line-height: 35px;
    font-weight: 500;
}
body > .container:nth-child(2n+1) > .title {
    font-weight: 600;
}
.container > .projects {
    display: grid;
    gap: 50px;
    grid-auto-rows: 200px;
    grid-template-columns: repeat(3, 1fr);
}
.container > .projects > .project {
    background-color: var(--white);
    color: var(--black);
    border-radius: 16px;
    padding: 35px;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
body > .container:nth-child(2n+1) > .projects > .project {
    background-color: var(--black);
    color: var(--white);
}
.container > .projects > .project > .title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}
.container > .projects > .project > a {
    display: flex;
    gap: 10px;
    width: max-content;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 25px;
    user-select: none;
}
body > .container:nth-child(2n+1) > .projects > .project > a {
    background-color: var(--white);
    color: var(--black);
}

.container > .projects > .project > a > span {
    font-size: 14px;
    line-height: 14px;
    min-width: max-content;
    margin: auto;
}
body > .container:nth-child(2n+1) > .projects > .project > a > span {
    fill: var(--black);
    font-weight: 500;
}
.container > .projects > .project > a > svg {
    width: 12px;
    height: 12px;
    margin: auto;
    fill: var(--white);
}
body > .container:nth-child(2n+1) > .projects > .project > a > svg {
    fill: var(--black);
}
.container > .projects > a {
    border: dashed 4px var(--white);
    border-radius: 16px;
    display: flex;
    cursor: pointer;
    user-select: none;
}
body > .container:nth-child(2n+1) > .projects > a {
    border: dashed 4px var(--black);
}
.container > .projects > a > .content {
    margin: auto;
    height: max-content;
    width: max-content;
    display: flex;
    gap: 20px;
}
.container > .projects > a span {
    color: var(--white);
    font-size: 20px;
    line-height: 20px;
    margin: auto;
}
body > .container:nth-child(2n+1) > .projects > a span {
    color: var(--black);
    font-weight: 500;
}
.container > .projects > a svg {
    fill: var(--white);
    height: 15px;
    width: 15px;
    margin: auto;
}
body > .container:nth-child(2n+1) > .projects > a svg {
    fill: var(--black);
}

.container > .skills {
    display: grid;
    gap: 50px;
    grid-auto-rows: 450px;
    grid-template-columns: repeat(3, 1fr);
}

.container > .skills > .skill {
    background-color: var(--black);
    color: var(--white);
    border-radius: 16px;
    padding: 50px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.container > .skills > .skill:nth-child(2n) {
    transform: scale(1.075);
}
.container > .skills > .skill > .bg {
    position: absolute;
    right: -100px;
    bottom: -100px;
    height: 450px;
    width: 450px;
    display: flex;
}
.container > .skills > .skill > .bg > svg {
    height: 100%;
    width: 100%;
    fill: var(--white);
    opacity: 0.05;
}

.container > .skills > .skill > .title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}
.container > .skills > .skill > .description {
    font-size: 35px;
    line-height: 35px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}