@font-face {
    font-family: neue machina;
    src: url('https://recepyolcu.github.io/fonts/NeueMachina/NeueMachina-Light.otf');
    font-style: normal;
}
@font-face {
    font-family: neue machina;
    src: url('https://recepyolcu.github.io/fonts/NeueMachina/NeueMachina-Regular.otf');
    font-style: normal;
}
@font-face {
    font-family: neue machina;
    src: url('https://recepyolcu.github.io/fonts/NeueMachina/NeueMachina-Ultrabold.otf');
    font-style: normal;
}

:root {
    --background: rgb(15, 15, 15);
    --main-gray: rgb(141, 141, 141);
    --main-green: rgb(140, 255, 0);
    --text-color-1: rgb(6, 8, 124);
    --text-color-2: rgb(10, 92, 199);
    --text-color-3: rgb(135, 7, 248);
    --text-color-4: rgb(255, 0, 191);
}

* {
    margin: 0;
    padding: 0;
    font-family: poppins, serif;
    color: white;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar{
    display: none;
}

#progress-bar-container {
    position: fixed;
    z-index: 10;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
}
#progress {
    position: absolute;
    width: 50px;
    height: 50px;
    mix-blend-mode: difference;
}
#scroll-to-top {
    position: fixed;
    left: 30px;
    bottom: 43px;
}   
#scroll-to-top img {
    width: 30px;
    opacity: 0;
}


.text-center{
    text-align: center;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: var(--background);
}

h1 {
    font-size: 2.5em;
    font-weight: 200;
}

menu {
    padding: 30px;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    border-bottom: 3px groove var(--main-green);
}

.main-header {
    padding: 50px;
}

#main-canvas {
    position: absolute;
    z-index: -1;
}

#developer-text {
    font-family: poppins, serif;
    font-size: 2em;
    font-weight: 800;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--main-green);
    color: transparent;
}

#coder-text {
    font-family: neue machina, serif;
    font-size: 2em;
    font-weight: 800;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--text-color-4);
    color: transparent;
}

h2 {
    font-size: 2em;
    font-weight: 200;
}

p {
    font-size: 1.1em;
    font-weight: 100;
}

.container {
    width: 80%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


header {
    height: max-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px groove var(--main-gray);
    padding: 10px;
    position: sticky;
    top: 0px;
    z-index: 10;
}


.logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

[id *="logo"]{
    width: 60px;
    height: 60px;
    border: 2px solid white;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 10px;
    bottom: 40px;
    gap: 30px;
}

.line {
    height: 40px;
    width: 1px;
    background-color: var(--main-green);
}

.social-media > a {
    height: 40px;
}

.social-media > a > svg {
    height: 40px;
    width: 40px;
    stroke: var(--main-gray);
    stroke-width: 16px;
    transition: 0.5s ease-out;
}

.social-media > a > svg:hover {
    stroke: var(--main-green);
}

ul {
    padding: 10px 20px;
    display: flex;
    gap: 7.5em;
    justify-content: flex-end;
}
ul > li {
    list-style: none;
    display: flex;
    align-items: center;
}
.active{
    color: var(--main-gray);
    font-weight: 100;
}
ul a {
    color: white;
    font-weight: 200;
    text-decoration: none;
    padding: 0px 20px;
    font-size: 25px;
}
ul a:hover:not(.active) {
    color: var(--main-green);
}
ul a:not(.active)::after{
    content: '';
    transform: scaleX(0);
    height: 1px;
    position: relative;
    display: block;
    background: white;
    transition: all 0.4s ease-out;
}
ul a:hover::after {
    transform: scaleX(1);
    background: var(--main-green);
}

.profile {
    display: flex;
    justify-content: center;
    align-items: center;
}


.about {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--main-gray);
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 100px;
    gap: 9rem;
}

.visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 600px;
    max-width: 700px;
}
.about-header {
    font-family: Neue Machina, serif;
    font-size: 5em;
    font-weight: 500;
    color: rgba(89, 255, 0, 0.5);
}
.text > p {
    font-weight: 300;
    font-size: 1.4em;
}

.text button {
    background-color: var(--background);
    border: 1px solid var(--main-gray);
    border-radius: 5rem;
    padding: 10px 25px;
    font-size: 1em;
    transition: 0.3s ease-out;
}
.text button:hover {
    border: 2px solid var(--main-green);
}

section {
    display: flex;
    width: 100%;
    min-height: 1000px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 100px;
    color: white;
}

.canvases {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.canvases > .canvas > a > img{
    border: 2px solid white;
    width: 200px;
    height: 200px;
}

.canvas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cursor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 50px;
    height: 50px;
    z-index: 10;
    border-radius: 100%;
    mix-blend-mode: difference;
    border: 3px solid white;
    transition: background-color 500ms ease-out;
    transition: all 150ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
}

.eyes {
    display: flex;
    justify-content: center;
}

.eye {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background-color: white;
    margin: 0px 8px;
    transition: all 150ms ease-out;
}

.mouth {
    width: 23px;
    height: 6px;
    stroke: white;
    position: relative;
    top: 1px;
    transition: all 150ms ease-out;
}

.click-white {
    width: 20px;
    height: 20px;
    padding: 0px;
    background-color: white;
}

.click-eye-white {
    width: 1px;
    height: 4px;
    margin: 0px 3px;
    background-color: black;
}

.hover-eye {
    width: 1px;
    height: 4px;
    margin: 0px 3px;
    background-color: white;
}

.click-mouth-white {
    width: 14px;
    height: 3px;
    stroke: black;
}

.hover-mouth {
    width: 4px;
    height: 4px;
    stroke: white;
}

.hover {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    opacity: 0.5;
}


#skills-section {
    gap: 30px;
}

.skills-header > h1 {
    font-size: 5em;
    font-family: neue machina;
    color: var(--main-green);
}

.skills{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 90%;
    gap: 30px;
}

[class *= '-box'] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 3px solid var(--text-color-4);
    min-width: 160px;
    transition: 0.3s ease-out;
}
[class *= '-box']:hover {
    border: 3px solid var(--main-green);
}
[class *= '-box'] > p {
    font-weight: 300;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s ease-out;
}

.skills h3 {
    font-family: neue machina, serif;
    font-weight: 900;
    text-align: center;
}

.skills img {
    width: 80px;
}

.exp {
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
}

[class *="star"] {
    width: 20px;
    height: 20px;
}

.star {
    fill: white;
    stroke: var(--text-color-4);
    stroke-width: 40px;
}
.empty-star {
    fill: var(--text-color-4);
}


#projects {
    border: 1px solid gray;
    padding: 30px;
    justify-content: flex-start;
}

#projects > h1 {
    font-family: neue machina;
    font-size: 4rem;
}

#projects > div {
    border: 1px solid gray;
}

#projects > h3 {
    font-size: 100;
    font-family: neue machina;
    color: white;
}


footer{
    text-align: center;
}

footer > p {
    font-family: neue machina;
    padding: 10px;
}
