:root{
    --shape-animation-height: 200px; 
    --shape-animation-width: 100px;
}

@font-face {
    font-family: "Magely";
    src: url('static/MagelyfreeRegular-DOeXW.otf');
    src: url('static/MagelyfreeRegular-DOeXW.otf') format('embedded-opentype'),
         /* url('fonts/fira/woff2/FiraSans-Regular.woff2') format('woff2'),
         url('fonts/fira/woff/FiraSans-Regular.woff') format('woff'),
         url('fonts/fira/woff2/FiraSans-Regular.ttf') format('truetype'); */
}

body{
    background-color: black;
    color: orange;
    font-family: 'Raleway', sans-serif;
    padding: 0px;
    margin: 0px;
    /* width: 100vh; */
    /* margin: 0; */
    overflow-x: hidden;
}

.developer_data{
    position: absolute;
    bottom: 10px;
    width: 100%;
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-shadow: 0px 4px 3px rgb(118, 57, 3);
}

.scroll_controller_container{
    position: absolute;
    top: calc(150vh - 90px);
    left: 20px;
    margin: 0px;
    height: calc(310vh + 50px);
    width: 100px;
    z-index: 100;
}

.scroll_controller{
    width: 40px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: orange;
    border-radius: 20px;
    position: sticky;
    top: calc(50vh - 90px);
    padding: 5px;
}

.scroll_controller_opc {
    width: 40px;
    height: 40px;
    font-weight: 800;
    background-color: rgba(0,0,0,.5);
    color: white;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll_opc_logo{
    padding: 0px;
    width: 30px;
}

.scroll_opc_name{
    display: none;
    opacity: 0;
    transition: .5s;
}

.scroll_controller_opc_selected{
     background-color: black;
     border: 2px solid orange;
     color: white;
     font-size: 20px;
     width: 130px;
     padding-left: 12px;
     border-radius: 15px;
     justify-content: start;
     transition: .5s, border-radius 0s, border 0s;
}

.scroll_controller_opc_selected > .scroll_opc_name {
    display: block;
    margin-left: 10px;
    opacity: 100%;
}

@media only screen and (max-width: 850px){
    .scroll_controller_container{
        width: 100%;
        height: fit-content;
        top: 20px;
        position: sticky;
    }
    .scroll_controller{
        flex-direction: row;
        width: 40%;
        min-width: 300px;
        height: auto;
        margin: auto;
        background-color: rgba(255, 165, 0, .8);
        backdrop-filter: blur(10px);
    }
}

.title_container{
    margin: auto;
    width: fit-content;
    animation-name: swipe_from_bottom;
    animation-duration: 1s;
}

@media only screen and (max-width: 650px){
    .title_container{
        margin-bottom: 30px;
    }
}

@keyframes swipe_from_bottom {
    from{
        transform: translateY(400px);
        opacity: 0%;
    }
    to{
        transform: translateY(0);
        opacity: 100%;
    }
}

@keyframes swipe_from_up {
    from{
        transform: translateY(-100%);
        opacity: 0%;
    }
    to{
        transform: translateY(-3vw);
        opacity: 100%;
    }
}

@media only screen and (max-width: 830px){
    .presentation_page{
        padding: 0px;
    }
}

.greeting_container{
    /* background-color: green; */
    display: flex;
    align-items: center;
    width: 100%;
}

.presentation_title{
    position: relative;
    justify-content: center;
    margin: 0px auto; 
    /* background-color: blue; */
}

.title_greeting{
    font-size: 5vw;
    font-family: 'Magely';
    margin: 0px;
    margin-right: 30px;
    text-wrap: nowrap;
}

.asterisk_container{
    display: flex;
    flex-wrap: wrap;
    height: 5vw;
    overflow-y: hidden;
    /* background-color: red; */
    /* max-width: 500px; */
}

.asterisk_container > img{
    width: 5vw;
    height: 5vw;
}

.title_name{
    /* font-size: 230px; */
    font-size: 15vw;
    font-family: 'Magely';
    text-align: left;
    width: fit-content;
    margin: 0px;
}

.title_name_img{
    width: 1000px;
}

/* @media only screen and (max-width: 1100px) {
    .title_name{
        width: 100%;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 830px){
    .title_name{
        font-size: 70px;
    }
} */
/* 
@media only screen and (max-width: 650px){
    .title_name{
        font-size: 60px;
    }
} */

br{
    display: none;
}

@media only screen and (max-width: 1100px) {
    br{
        display: block;
    }
}

.profession_title{
    transform: translateY(-400px);
    opacity: 0;
    font-size: 30px;
    margin: 0px;
    animation-name: swipe_from_up;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 830px){
    .profession_title{
        font-size: 25px;
    }
}

@media only screen and (max-width: 650px){
    .profession_title{
        font-size: 20px;
    }
}

.hand_logo{
    width: 80px;
    transform: rotate(-20deg);
}

@media only screen and (max-width: 1100px) {
    .hand_logo{
        display: none;
    }
}

@media only screen and (max-width: 830px){
    .hand_logo{
        width: 60px;
    }
}
    
.presentation_container{
    transform: translateY(-400px);
    width: 80%;
    margin: auto;
    opacity: 0;
    display: flex;
    justify-content: center;
    gap: 35px;
    animation-name: swipe_from_bottom_presentation;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
}

@keyframes swipe_from_bottom_presentation {
    from{
        transform: translateY(400px);
        opacity: 0%;
    }
    to{
        transform: translateY(0);
        opacity: 100%;
    }
}

@media only screen and (max-width: 1100px) {
    .presentation_container{
        width: 80%;
        gap: 0px;
    }
}

.presentation_paragraph{
    font-weight: 50;
    line-height: 30px;
    font-size: 16px;
    /* letter-spacing: 1.5px; */
    text-align: center;
    color: rgb(255, 208, 146);
}

.presentation_paragraph > strong{
    font-size: 25px;
    color: orange;
    /* text-decoration: underline; */
}

@media only screen and (max-width: 1100px) {
    .presentation_paragraph{
        margin: 0;
    }
}

@media only screen and (max-width: 500px){
    .presentation_paragraph{
        text-align: justify;
        line-height: 5vw;
        font-size: 3.5vw;
    }
    .presentation_paragraph > strong{
        font-size: 6vw;
    };
}

.me_img{
    width: 250px;
    padding: 10px;
    border: 3px solid orange;
    background: linear-gradient(0deg, rgb(255, 0, 0), rgb(255, 77, 0));
}

.circuit_img{
    width: 170px;
    color: white;
}

@media only screen and (max-width: 1100px) {
    .circuit_img{
        width: 0px;
    }
}

.corner{
    width: 120px;
    height: 100px;
    position: absolute;
    bottom: -50px;
    left: 230px;
}

.corner2{
    width: 120px;
    height: 100px;
    position: absolute;
    top: -50px;
    right: 230px;
    rotate: 180deg;
}

.gradient_shape{
    transform: translateX(0px);
    position: absolute;
    scale: 1;
    z-index: -1;
    top: -100px;
    left: -100px;
    right: -200px;
    width: 1000px;
    height: 1000px;
    filter: contrast(100%) brightness(800%) invert(100%);
    background: 
	radial-gradient(circle at top left, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
	url("data:image/svg+xml,%3Csvg viewBox='0 0 1300 1300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: shape_animation3 linear;
    animation-timeline: view(300px 700px);
    animation-fill-mode: forwards;
    animation-direction: reverse;
}
@keyframes shape_animation3 {
    from {
       transform: translateX(400px);
       scale: 2 1;
    }
    to {
        transform: translateX(0px);
        scale: 1;
    }
}

.gradient_shape2{
    mix-blend-mode: difference;
    position: absolute;
    z-index: -1;
    top: 200px;
    right: -200px;
    width: 1500px;
    height: 2000px;
    filter: contrast(100%) brightness(900%) invert(100%);
    background: 
	radial-gradient(circle at 70% 50%, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
	url("data:image/svg+xml,%3Csvg viewBox='0 0 1800 2500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    scale: .8 .8;
    animation: shape_animation1 linear;
    animation-timeline: view(100px 0px);
    animation-fill-mode: forwards;
}

@keyframes shape_animation1 {
    0% {
       transform: translateX(1200px) translateY(0);
    }
    50%{scale: .8 .8;}
    100% {
        transform: translateX(0px) translateY(150px);
        scale: 1.15 1.15;
    }
}

.gradient_shape3{
    mix-blend-mode: difference;
    position: absolute;
    z-index: -1;
    top: 1900px;
    left: -100px;
    width: 1000px;
    height: 1000px;
    filter: contrast(100%) brightness(800%) invert(100%);
    background: 
	radial-gradient(circle, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
	url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 1200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: shape_animation2 linear;
    animation-timeline: view(100px 0px);
    animation-fill-mode: forwards;
}

@keyframes shape_animation2 {
    0% {
       transform: translateX(0px);
    }
    50%{ transform: translateX(100px);}
    100% {
        transform: translateX(1000px);
    }
}

.gradient_shape4{
    mix-blend-mode: difference;
    position: absolute;
    z-index: -1;
    transform: translateY(-350px) translateX(100px);
    bottom: 0px;
    width: 100%;
    height: 500px;
    filter: contrast(100%) brightness(1000%) invert(100%);
    background: 
	radial-gradient(circle at bottom, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
	url("data:image/svg+xml,%3Csvg viewBox='0 0 2600 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    scale: 2.8 1;
    animation: shape_animation3 linear;
    animation-timeline: view(800px 0px);
    animation-fill-mode: forwards;
}

@keyframes shape_animation3 {
from {
   transform: translateY(-350px) translateX(100px);
}
to {
    transform: translateY(0px) translateX(0px);
}
}

@media only screen and (max-width: 500px){
    .gradient_shape{
        width: 600px;
        height: 600px;
        filter: contrast(103%) brightness(700%) invert(100%);
        background: 
        radial-gradient(circle at top left, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1300 1300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        animation: none;
        transform: translateX(0px);
        scale: 1;
    }
    .gradient_shape2{
        width: 750px;
        height: 1000px;
        right: 0px;
        top: 480px;
        filter: contrast(100%) brightness(900%) invert(100%);
        background: 
        radial-gradient(circle at 70% 50%, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1800 2500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        animation: none;
        transform: translateX(150px) translateY(150px);
        scale: 1.15 1.15;
    }
    .gradient_shape3{
        top: 2100px;
        left: -300px;
        width: 900px;
        height: 900px;
        filter: contrast(100%) brightness(800%) invert(100%);
        background: 
        radial-gradient(circle, rgb(0, 10, 110), rgba(0, 0, 0, 0.4)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        animation: none;
    }
    .gradient_shape4{
        animation: none;
        transform: translateX(0) translateY(0);
    }
}

.section_buttons_container{
    transform: translateY(400px);
    opacity: 0;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    width: 900px;
    justify-content: space-between;
    animation-name: swipe_from_bottom;
    animation-duration: 1.5s;
    animation-delay: 1.3s;
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 1100px) {
    .section_buttons_container{
        transform: translateY(400px);
        opacity: 0;
        margin: 0 auto;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        width: 60%;
        gap: 15px;
        animation-name: swipe_from_bottom;
        animation-duration: 1.5s;
        animation-delay: 1.3s;
        animation-fill-mode: forwards;
    }
}

.section_button{
    width: 250px;
    height: 50px;
    background-color: black;
    color: orange;
    font-weight: bold;
    border: solid 5px orange;
    font-size: 18px;
    cursor: pointer;
    transition: .7s;
}

@media only screen and (max-width: 1100px) {
    .section_button{
        width: 100%;
    }
}

.section_button:hover {
    background-color: orange;
    color: black;
}

.page{
    box-sizing: content-box;
    padding-top: 30px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0px;
    margin-bottom: 300px;
}

.page_title{
    scale: 0;
    opacity: 0;
    filter: blur(12px);
    margin: 0px;
    color: orange;
    text-align: center;
    font-size: 100px;
    font-family: 'Magely';
    margin-bottom: 30px;
    animation: title_scale_in linear;
    animation-timeline: view(350px 200px);
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 650px){
    .page_title{
        font-size: 80px;
    }
}

@media only screen and (max-width: 500px){
    .page_title{
        animation: none;
        scale: 1;
        opacity: 1;
        filter: none;
    }
}

.contact_title{
    animation: title_scale_in linear;
    animation-timeline: view(500px 0px);
    animation-fill-mode: forwards;
    margin-bottom: 70px;
}

@media only screen and (max-width: 1100px) {
    .contact_title{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 500px) {
    .contact_title{
        animation: none;
    }
}

@keyframes title_scale_in {
    from {
        scale: 0;
        opacity: 0;
        filter: blur(12px);
    }
    to {
        scale: 1;
        opacity: 100%;
        filter: blur(0px);
    }
}

.projects_container{
    scale: 0 0;
    opacity: 0;
    transform-origin: top;
    position: relative;
    width: 70%;
    margin: 0 auto;
    display: flex;
    transition: 1s;
    animation: projects_container linear;
    animation-timeline: view(700px 100px);
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 1100px) {
    .projects_container{
        flex-direction: column;
        scale: 1;
        opacity: 0;
        height: 0px;
        opacity: 0;
        animation: projects_container_small linear;
        animation-timeline: view(550px 50px);
        animation-fill-mode: forwards;
    }
    
    .projects_container:hover{
        animation: none;
        opacity: 1;
        transform: translateY(0px);
        height: 400px;
    }
}

@media only screen and (max-width: 500px){
    .projects_container{
        height: 300px;
        opacity: 1;
        animation: none;
    }
    .projects_container:hover{
        opacity: 1;
        height: 400px;
        animation: none;
    }
}
    
@keyframes projects_container {
    30%{scale: 0.4 0; opacity: 0;}
    50%{scale:  0.4 .6;}
    70%{scale:  0.4 1; opacity: .7;}
    100%{scale: 1 1; opacity: 1;}
}

.project{
    position: relative;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: rgba(0, 0, 0, .5);
    border: 4px solid orange;
    height: 400px;
    overflow: hidden;
    transition: 1s;
}

.project:hover{
    flex: 2;
    justify-content: start;
    background-color: rgb(255, 165, 0);
    border: 4px solid black;
    color: black;
}

.project:hover .project_description{
    height: 100%;
    padding-top: 40px;
    padding-inline: 20px;
}

.project:hover .project_img{
    scale: 1.5;
}

.project:hover .project_tag_container{
    max-width: 60%;
}

.project:hover .project_interaction{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: end;
    position: absolute;
    margin-top: 20px;
    bottom: 10px;
}

.project:hover .project_tag{
    padding-inline: 25px;
}

.project:hover .project_sites{
    display: flex;
    align-items: end;
    flex-direction: column-reverse;
    gap: 10px;
}
 
@media only screen and (max-width: 1100px) {
    .project{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .project:hover{
        flex: 5;
        justify-content: start;
    }

    .project:hover > .project_title{
        margin: 10px;
    }
    .project:hover > .project_img{
        width: 100%;
    }
    .project:hover .project_description{
        height: 100%;
        font-size: 1.7vw;
        padding-top: 20px;
    }
    .project:hover .project_interaction{
        height: fit-content;
    } 
}

@media only screen and (max-width: 650px){
    .project:hover .project_description{
        height: 100%;
        font-size: 11px;
    }
}

@media only screen and (max-width: 500px){
    .projects_container:hover{
        height:  450px;
    }
    .project:hover .project_description{
        height: 100%;
    }
    .project:hover > .project_img{
        height: 100%;
    }
}

@media only screen and (max-width: 350px){
    .project:hover .project_description{
        font-size: 2.7vw;
    }
}

.site_link:hover {
    letter-spacing: 1.5px;
    background-color: rgba(0, 0, 0, .5);
}

.project_title{
    text-align: center;
}

@media only screen and (max-width: 1100px) {
    .project_title{
        margin: 0px;
    }
}

.project_img{
    aspect-ratio: 16/8;
    width: 100%;
    background-color: red;
    transform-origin: top;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1100px) {
    .project_img{
        width: 0%;
        margin-bottom: 0px;
        transition: .5s;
    }
}

.project_description{
    position: absolute;
    box-sizing: border-box;
    color: white;
    height: 0;
    top: 13%;
    backdrop-filter: blur(2px);
    font-size: 15px;
    background: linear-gradient(180deg, black, rgba(0,0,0,.6));
    overflow: hidden;
    text-align: justify;
    text-transform: uppercase;
    transition: .5s;
}

.project_interaction{
    position: relative;
    /* background-color: green; */
    margin-top: 0px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 0 20px;
}
.project_sites{
    display: flex;
    align-items: center;
    gap: 10px;
}

.project_github{
    margin: 0;
    height: 22px;
    width: 22px;
    cursor: pointer;
    transition: .5s;
}

.project_github:hover{
    filter: drop-shadow(0px 0px 2px orange)
}

@media only screen and (max-width: 1100px) {
    .project_interaction{
        height: 0;
        overflow: hidden;
    }
}  

.project_tag_container{
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

@media only screen and (max-width: 650px){
    .project_tag_container{
        gap: 6px;
    }
}

.project_tag{
    font-weight: 500;
    color: black;
    padding: 5px;
    background-color: orange;
    transition: .5s;
    text-wrap: nowrap;
    font-size: 14px;
}

.site_link{
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    border: 3px solid orange;
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 10px;
    transition: .5s;
}

@media only screen and (max-width: 650px){
    .project_tag, .site_link{
        width: fit-content;
        font-size: 2.5vw;
        padding: .7vw 1vw;
    }
}

.about_items_container{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    height: 0px;
    width: 70%;
    margin: 0 auto;
    gap: 10px;
}

@media only screen and (max-width: 1100px) {
    .about_items_container{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.education{
    grid-column: span 4;
}

@media only screen and (max-width: 1100px) {
    .education{
        grid-column: span 8;
    }
}

.my_description{
    grid-column: span 4;
}

@media only screen and (max-width: 1100px) {
    .my_description{
        grid-column: span 8;
    }
}

.skills{
    grid-column: span 8;
}

.diplomas{
    grid-column: span 3;
}

.about_item{
    color: orange;
    filter: blur(8px) grayscale(100%);
    overflow: hidden;
    box-sizing: border-box;
    font-size: 30px;
    background-color: rgba(252, 230, 208, 0.1);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, .5);
    border-radius: 10px;
    backdrop-filter: blur(100px);
    transition: .3s;
    animation: about_items_in linear;
    animation-timeline: view(500px 100px);
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 700px){
    .about_item{
        filter: none;
        padding: 15px;
        overflow: visible;
        border-top: 1px solid rgba(255, 255, 255, .5);
        border-left: 1px solid rgba(255, 255, 255, .5);
        animation:none
    }
}

@keyframes about_items_in {
    30%{
        padding: 0px; 
        overflow: hidden; 
        border-top: 0px solid rgba(255, 255, 255, .1);
        border-left: 0px solid rgba(255, 255, 255, .1);
    }
    55%, 100%{
        height: 200px; 
        filter: blur(0px) grayscale(0%);
        padding: 15px; 
        overflow: visible; 
        border-top: 1px solid rgba(255, 255, 255, .5);
        border-left: 1px solid rgba(255, 255, 255, .5);
    }
}

.about_item:hover{
    z-index: 1;
    scale: 1.05;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, .7);
    background-color: rgba(255, 165, 0, .7);
    filter: none;
    color: white;
}

.about_item:hover > .about_item_title{
    transform-origin: center;
    scale: 1.5;
    text-shadow: 0px 4px 7px rgba(0, 0, 0, .7);
}

.about_item_title{
    margin: 0px;
    margin-bottom: 10px;
    font-size: 1em;
    width: fit-content;
    transition: .3s, color .1s;
}

.about_item_content{
    font-size: .5em;
}

.timeline_container{
    position: relative;
    height: 75%;
}

@media only screen and (max-width: 1100px){
    .timeline_container{
        height: 130px;
    }
}

.timeline_item{
    position: relative;
    width: 35%;
    height: 50%;
    box-sizing: border-box;
    display: flex;
}

.timeline_item_one{
    margin-left: 60%;
    align-items: start;
}

.timeline_item_two{
    align-items: end;
    margin-left: 10%;
}
.timeline_item_one > .timeline_circle{
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.timeline_item_two > .timeline_circle{
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline_content{
    background-color: orange;
    color: black;
    width: 100%;
    height: 80%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline_item_title{
    font-size: 18px;
    margin: 0px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 750px){
    .timeline_item_title{
        font-size: 12px;
    }
}

@media only screen and (max-width: 1500px){
    .timeline_item_title_school{
        font-size: 14px;
    }
}

.timeline_item_date{
    font-size: 12px;
    margin: 0px;
}

@media only screen and (max-width: 750px){
    .timeline_item_date{
        font-size: 10px;
    }
}

.timeline_circle{
    width: 20px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: orange;
    border: 3px solid black;
    position: absolute;
}

.timeline_line{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 8px;
    background-color: orange;
}

.skills_container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    height: 130px;
    box-sizing: border-box;
    padding: 0 10px;
    /* background-color: green; */
}

@media only screen and (max-width: 700px){
    .skills_container{
        flex-wrap: wrap;
        height: fit-content;
    }
}

.tech_item{
    width: 8%;
    height: fit-content;
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
@media only screen and (max-width: 700px){
    .tech_item{
        min-width: 50px;
        height: fit-content;
    }
}

.tech_logo{
    width: 100%;
}

.tech_name{
    color: white;
    height: 0px;
    margin: 0px;
    opacity: 0%;
    font-size: 20px;
    font-weight: bold;
    transition: .5s;
}

@media only screen and (max-width: 830px){
    .tech_name{
        font-size: 15px;
    }
}

.tech_item:hover{
    scale: 1.1;
    transform: translateY(-12px);
    filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, .5));
    z-index: 1;
}

.tech_item:hover > .tech_name {
    display: block;
    padding-top: 5px;
    height: 25px;
    opacity: 100%;
}

@keyframes projects_container_small {
    0%{height: 0px; opacity: 0;}
    100%{height: 300px; opacity: 1;}
}

.social_media_container{
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: auto;
    padding: 0px;
}

@media only screen and (max-width: 1100px) {
    .social_media_container{
       flex-direction: column;
       gap: 10px;
    }
}

.social_media_box{
    height: 25px;
    backdrop-filter: blur(2px);
    transition: .5s;
    padding: 10px 20px;
    align-items: center;
    overflow: hidden;
}

.social_media_box::before{
    position: absolute;
    top: 0;
    left: -10px;
    content: '';
    border-radius: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform-origin: top;
    scale: 0 0;
    transition: .4s;
    filter: blur(30px);
    opacity: 1;
}

.social_media_box:hover::before{
    scale: 1 1;
}

.social_media_box:hover > .social_media_content{
    margin-top: 10px;
    height: 190px;
    aspect-ratio: 4/3;
    padding-top: 10px;
    opacity: 100%;
}

@media only screen and (max-width: 1100px) {
    .social_media_box{
        width: calc(100% - 48px);
    }
}

.social_media_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    padding: 0px;
}

.social_media_name{
    font-size: 20px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    height: fit-content;
}

@media only screen and (max-width: 500px) {
    .social_media_name{
        font-size: 5vw;
    }
}

.social_media_image{
    width: 25px;
    height: fit-content;
}

.social_media_content{
    box-sizing: border-box;
    opacity: 0%;
    width: 100%;
    height: 0px;
    padding-top: 0px;
    padding-left: 10px;
    margin: 0px;
    background: linear-gradient(180deg, rgba(143,143,143,1) 33%, rgba(255,255,255,1) 33%, rgba(255,255,255,1) 100%);
    transition: 1s;
}

.social_media_user{
    font-size: 20px;
    margin: 0px;
}

.user_image{
    width: 70px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100%;
    border: solid 2px white;
}

.user_name{
    margin: 0px;
    font-size: 1em;
    color: black;
    margin: 0;
    margin-bottom: 1px;
}

.user_description{
    color: black;
    font-size: .5em;
    margin: 0;
    margin-bottom: 4px;
    font-weight: 500;
}

.user_ubication{
    color: black;
    opacity: 70%;
    font-size: .5em;
    margin: 0;
    margin-bottom: 3px;
    font-weight: lighter;
}

.user_contacts{
    color: #0a66c2;
    font-size: .5em;
    margin: 0;
    margin-bottom: 5px;
    font-weight: 500;
}

.user_buttons{
    display: flex;
    gap: 8px;
    font-size: 10px;
    align-items: center;
}

.user_buttons > span {
    color: #0a66c2;
    border: solid 2px #0a66c2;
    background-color: white;
    border-radius: 10px;
    padding: 3px 5px;
    font-weight: bold;
}

.plane_icon{
    width: 8px;
}

svg {
    color: red;
}

.linkedin{
    border-style: double;
    border-color: orange;
    border-width: 4px;
    /* border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(to right, #00499d,#0000ff,#001d6e) 1; */
    background: linear-gradient(70deg, rgba(33, 33, 33, 0.2), rgba(44, 44, 44, 0.5));
    transform: translateX(-800px);
    animation: social_media_left_in linear;
    animation-timeline: view(550px 0px);
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 500px) {
    .linkedin{
        animation: none;
        transform: translateX(0);
    }
}

@keyframes social_media_left_in {
    from {
        transform: translateX(-800px);
    }
    to {
        transform: translateX(0px);
    }
}

.linkedin::before{
    background: linear-gradient(to right, #00499d,#0000ff,#001d6e);
}

.github{
    border-style: double;
    border-color: orange;
    border-width: 4px;
    /* border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(to right, #ffff3f,#ffff20,#ffd900) 1; */
    background: linear-gradient(0deg, rgba(33, 33, 33, 0.2), rgba(44, 44, 44, 0.5));
    transform: translateX(800px);
    animation: social_media_right_in linear;
    animation-timeline: view(550px 0px);
    animation-fill-mode: forwards;
}

@keyframes social_media_right_in {
    from {
        transform: translateX(800px);
    }
    to {
        transform: translateX(0px);
    }
}

.github::before{
    background: linear-gradient(to right, #ffff3f,#ffff20,#ffd900);
}

@media only screen and (max-width: 1100px) {
    .github{
        animation: social_media_left_in linear;
        animation-timeline: view(630px 0px);
        animation-fill-mode: forwards;
    }
}

@media only screen and (max-width: 500px) {
    .github{
        animation: none;
        transform: translateX(0);
    }
}

.gmail{
    border-style: double;
    border-color: orange;
    border-width: 4px;
    background: linear-gradient(0deg, rgba(33, 33, 33, 0.2), rgba(44, 44, 44, 0.5));
    transform: translateX(800px);
    animation: social_media_bottom_in linear;
    animation-timeline: view(550px 0px);
    animation-fill-mode: forwards;
}

.gmail:before{
    background: linear-gradient(to right, #cd8303,#ff9500,#e15d1f);
}

@media only screen and (max-width: 1100px) {
    .gmail{
        animation: social_media_left_in linear;
        animation-timeline: view(590px 0px);
        animation-fill-mode: forwards;
    }
}

@media only screen and (max-width: 500px) {
    .gmail{
        animation: none;
        transform: translateX(0);
    }
}

.social_media_name_gmail{
    font-size: 16px;
}

@media only screen and (max-width: 400px) {
    .social_media_name_gmail{
        font-size: 3vw;
    }
}

.logo_gmail{
    filter: grayscale(100%) brightness(1000%);
}

@keyframes social_media_bottom_in {
    from {
        transform: translateY(200px);
    }
    to {
        transform: translateY(0px);
    }
}

.contact_page{
    height: 60vh;
    margin-bottom: 0px;
}

.background_design{
    background-color: white;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0px;
    z-index: -10;
}

.background_shape{
    position: absolute;
    border: 10px solid red;
    z-index: -1;
    border-radius: 100%;
    animation-name: shape_animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.computer_illustration{
    border-radius: 100%;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 300px;
    padding: 20px;
     animation: animation_element linear;
     animation-timing-function: ease-in-out;
     animation-timeline: view(100px 300px);
     animation-fill-mode: forwards;
     z-index: 100;
}


/* EMAIL, NO SE USA MAS */

.email_form{
    box-sizing: border-box;
    width: 50%;
    height: 0px;
    overflow-y: hidden;
    margin: 40px auto;
    /* padding: 20px; */
    color: black;
    /* background-color: rgba(255, 166, 0, 0.26); */
    backdrop-filter: blur(3px);
    border-width: 10px;
    border-style: double;
    border-color: orange;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    /* scale: 1 0; */
    animation: gmail_form_in linear;
    animation-timeline: view(550px 100px);
    animation-fill-mode: forwards;
}

@keyframes gmail_form_in {
    from {
        background-color: rgba(255, 166, 0, 0);
        height: 0px;
        padding: 0px;
    }
    to {
        background-color: rgba(255, 166, 0, 0.26);
        height: 370px;
        padding: 20px;
    }
}


.email_form > h3{
    margin-top: 0px;
    margin-bottom: 8px;
    text-align: center;
    text-transform: uppercase;
    color: orange;
}

.email_form > input {
    box-sizing: border-box;
    width: 100%;
    padding: 10px 5px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: 0px;
}

.email_form > input:focus {
    outline: 2px solid orange;
}

.input_message{
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
    height: 100px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: 0px;
    resize: none;
}

.input_message:focus {
    outline: 2px solid orange;
}

.email_button {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: orange;
    font-size: 20px;
    padding: 8px 0px;
    border: 0px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: .5s;
    transition-timing-function: ease;
}

.email_button:hover {
    background-color: rgb(255, 157, 0);
    color: black;
}

@keyframes animation_element {
    20%{left: 0px; top: 0; padding: 10px;}
    33%{left: 900px; top: 200px; padding: 100px;}
    43%{left: 900px; top: 200px; padding: 100px;}
    60%{left: 0px; top: 300px; padding: 100px;}
    70%{left: 0px; top: 300px; padding: 100px;}
    100%{left: 900px; top: 300px; padding: 100px;}
}

