@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1vw;
  font-style: normal;
  cursor: none !important;
  overflow-x: clip;
  color: #292929;
}

* {
  cursor: none !important;
}

body{
    margin: 0;
    overflow-x: clip;
}

div{
    padding: none;
    margin: 0;
}

.nav_item{
    float: left;
    padding: 2rem;
    font-size: 1rem;
    text-decoration: none;
    transition: .5s;
}

hr{
  border: 0;
  height: .1rem;
  background-color: #333;
}

h1{
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 400;
    font-size: 3rem;
    font-style: normal;
}

h2{
    margin: 0;
    color: rgba(255, 255, 255, 0.323);
    font-weight: 400;
    font-size: 1.2rem;
    font-style: normal;
}

h3{
    margin: 0;
    color: rgb(39, 39, 39);
    font-weight: 600;
    font-size: 10rem;
    font-style: normal;
}

h4{
    margin: 0;
    color: rgba(255, 255, 255, 0.412);
    font-weight: 600;
    font-size: 4rem;
    font-style: normal;
}

h5{
    margin: 0;
    color: #868686;
    font-weight: 500;
    font-size: 6rem;
    font-style: normal;
}

.button_transp{
    width: fit-content;
    background-color: rgba(255, 255, 255, 0);
    border: rgba(255, 255, 255, 0.337) .1rem solid;
    color: rgba(255, 255, 255, 0.337);
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
    border-radius: 2rem;
    text-decoration: none;
}

.button_grey{
    width: fit-content;
    background-color: rgb(95, 95, 95);
    border: rgba(255, 255, 255, 0.337) 0 solid;
    color: rgba(255, 255, 255, 0.945);
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
    border-radius: 2rem;
    text-decoration: none;
}

#cursor{
    width: 1vw;
    height: 1vw;
    border-radius: 2vw;
    background-color: red;
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.spin_text{
    position: absolute;
    transform: translateX(-100vw);
    animation: spin 14s linear infinite;
    animation-delay: var(--v);
}

@keyframes spin{
  0% { transform: translateX(-100vw);}
  100% { transform: translateX(100vw); }
}

.project{
    background-color: lightgrey;
    border-radius: 1rem;
    line-height:1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    padding: .5rem;
}

.project_thumb{
    transition: .6s;
    width: 100%;
}

.project_logo{
    transition: .6s;
    width: var(--v);
}

.project:hover .project_thumb{
    filter:brightness(0.8) blur(0.1rem);
    transform: scale(1.2);
}

.project:hover .project_logo{
    width: calc(var(--v)*.9);
}

a{
    color: #292929;
    text-decoration: none;
}


.skills_img{
    height: 5rem;
    width: 0;
    transition: .6s;
    margin-right: 1rem;
    object-fit: cover;
    border-radius: 1rem;
}

.skills_number{
    transform: translateX(0);
    transition: .6s;
    display: flex;
}

.skills_plus{
    transition: .8s;
    transform: rotateZ(0);
    width: 3rem;
    height: 3rem;
    padding: .7rem;
    margin-left: 1rem;
}


.skills:hover .skills_img{
    height: 5rem;
    width: 9rem;
}

.skills:hover .skills_plus{
    transform: rotateZ(90deg);
}

.skills:hover .skills_number{
    transform: translateX(-4.2rem);
}


.blob{
    animation: blob ease-in-out alternate infinite 2s;
    animation-delay: var(--v);
}


@keyframes blob{
  0% { left: calc((var(--x) - .5)*1vw); top: calc((var(--y) + .5)*1vw);}
  100% { left: calc((var(--x) + .5)*1vw); top: calc((var(--y) - .5)*1vw);}
}


.footer_text{
    color: var(--text-white);
    font-style: normal;
    margin-bottom: .6rem;
    transition: .5s;
}

input{
    border-radius: 1rem;
    background-color: #000000;
    border: rgba(255, 255, 255, 0.337) .1rem solid;
    color: white;
    padding: .8rem;
    margin: .5rem;
}

textarea{
    border-radius: 1rem;
    background-color: #000000;
    border: rgba(255, 255, 255, 0.337) .1rem solid;
    color: white;
    padding: .8rem;
    margin: .5rem;
}

.mooing{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 18rem;
}

.nav_item:hover{
    color: red;
}

.footer_text:hover{
    color: red;
}