body{
    background-color: #222222;
    display: grid;
    grid-template-columns: repeat(1fr);
    grid-template-rows: 10vh 80vh 80vh 80vh 100vh 60vh;
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}
header{
    grid-column: 1/6;
    grid-row: 1;
    display: grid;
    grid-template-columns: 20vw 20vw 20vw 20vw 20vw;
    z-index: 1;
}
.fa-globe{
    color: whitesmoke;
    margin-top: 20px;
    margin-right: 5px;
}
#fullName{
    color: whitesmoke;
    position: fixed;
    top: 50px;
    left: 50px;
    display: flex;
    font-size: 1.5em;
}
#letterName{
    position: relative;
}
#name{
    position: relative;
    transform: translateX(-100px);
}
#letterFirstName{
    position: fixed;
    margin-top: 20px;
    margin-left: 20px;
}
#firstName{
    position: relative;
    margin-top: 20px;
    transform: translateX(-120px);
}
#letterSecondName{
    position: fixed;
    margin-top: 40px;
    margin-left: 50px;
}
#secondName{
    position: relative;
    margin-top: 40px;
    transform: translateX(-150px);
}
#languageContainer{
    grid-column: 5;
    display: flex;
    justify-content: center;
    height: 40px;
}
select{
    margin-top: 20px;
    width: 80px;
    border-radius: 20%;
    background-color: rgb(63, 62, 62);
    color: white;
}
option{
    width: 80px;
    background-color: rgb(63, 62, 62);
    color: white;
}
#presentation{
    grid-column: 1/6;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-left: 15vw;
    margin-right: 15vw;
}
#textPresentation{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5em;
    font-style: italic;
    font-weight: bold;
    margin-left: 40px;
    box-sizing: border-box;
    color: rgb(129, 125, 125);
}
#textPresentation span{
    position: relative;
    display: inline-block;
}
label{
    display: inline-block;
}
#lettersAnimation{
    width: 100px;
    height: 30px;
    background-color: rgb(63, 62, 62);
    color: black;
    margin-top: 20px;
}
#lettersAnimation:hover{
    background-color: rgb(36, 35, 35);
    font-size: 1em;
}
.backFace{
    position: absolute;
    display: flex;
}
#leftFace{
    position: relative;
    z-index: -1;
    width: 50vw;
    height: 100vh;
}
#rightFace{
    position: relative;
    z-index: -1;
    width: 50vw;
    height: 100vh;
}
.backCode{
    position: absolute;
    display: flex;
    flex-direction: column;
}
#topCode{
    position: relative;
    z-index: -2;
    width: 100vw;
    height: 50vh;
}
#bottomCode{
    position: relative;
    z-index: -2;
    width: 100vw;
    height: 50vh;
}
#worksTitle{
    grid-column: 1/6;
    grid-row: 3;
    color: white;
    font-size: 2.2em;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
}
#work{
    margin-top: 100px;
    grid-column: 1/6;
    grid-row: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    flex-wrap: wrap;
}
.workCard{
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    width: 20vw;
    height: 40vh;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 20px;
    padding: 5px;
    text-align: center;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    min-width: 200px;
    min-height: 250px;
}
.titleWorkCard{
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    font-size: 1.2em;
    color: gray;
    border: solid 2px rgb(54, 54, 54);
    margin-top: 0;
    margin-bottom: 0;
    transition: 0.5s;
}
.bodyCard{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 5fr 1fr;
    margin-top: 0;
    padding: 5px;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s;
}
.workCard:hover .bodyCard{
    transform: translateY(0px);
    opacity: 1;
    transition: 0.5s;
}
.textCard{
    color: whitesmoke;
    grid-column: 1/4;
    grid-row: 2;
    transition: 0.5s;
    font-size: 1.2em;
}
.buttonCard{
    width: 15vw;
    color: white;
    text-align: center;
    text-decoration: none;
    border: solid 1px white;
    border-radius: 15px;
    padding: 4px;
    grid-column: 2;
    grid-row: 3;
    transition: 0.5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.buttonCard:hover{
    color: black;
    border: solid 1px black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgb(255, 255, 255);
}
#skillsTitle{
    grid-column: 1/6;
    grid-row: 4;
    color: white;
    font-size: 2.2em;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
    margin-top: 300px;
}
#skills{
    width: 100vw;
    grid-column: 1/6;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 400px;
}
.skill{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 80vw;
    height: 30px;
    margin-top: 3px;
    margin-bottom: 3px;
    transition: 3s;
    transform: translateX(-200px);
    opacity: 0;
}
.skillText{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.2em;
    font-style: italic;
    font-weight: bold;
    color: white;
    width: 18vw;
    text-shadow: 10px 5px rgb(56, 143, 155);
}
.skillBar{
    width: 60vw;
    height: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(56, 143, 155, 0.2);
}
.colorBar1{
    background-color: rgba(83, 218, 241, 0.4);
}
.colorBar2{
    background-color: rgba(83, 218, 241, 0.8);
}
.colorBar3{
    background-color: rgba(95, 68, 248, 0.4);
}
.colorBar4{
    background-color: rgba(95, 68, 248, 0.8);
}
#barSkill0{
    display: flex;
    background-color: transparent;
    box-shadow: none;
}
#nameSkill0{
    text-shadow: 10px 5px rgb(56, 143, 155);
    margin-left: 10vw;
    width: 8vw;
}
#good{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30vw;
    margin-left: 2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    background-color: rgba(83, 218, 241, 0.4);
    box-shadow: 0 5px 15px rgba(83, 218, 241, 0.2);
    overflow: hidden;
}
#veryGood{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10vw;
    margin-left: 2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    background-color: rgba(83, 218, 241, 0.8);
    box-shadow: 0 5px 15px rgba(80, 164, 231, 0.2);
    overflow: hidden;
}
#pro{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10vw;
    margin-left: 2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    background-color: rgba(95, 68, 248, 0.4);
    box-shadow: 0 5px 15px rgba(32, 9, 138, 0.2);
    overflow: hidden;
}
#master{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10vw;
    margin-left: 2px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    background-color: rgba(95, 68, 248, 0.8);
    box-shadow: 0 5px 15px rgba(14, 2, 36, 0.2);
    overflow: hidden;
}
footer{
    margin-top: 300px;
    grid-column: 1/6;
    grid-row: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#redesTitle{
    grid-column: 1/6;
    grid-row: 4;
    color: white;
    font-size: 2.2em;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
}
.redes{
    width: 20vw;
    height: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.facebookButton{
    color: white;
    font-size: 50px;
}
.linkedinButton{
    color: white;
    font-size: 50px;
    margin-left: 10px;
}
.outlookButton{
    color: white;
    font-size: 50px;
    margin-left: 10px;
    z-index: 2;
}
#despedida{
    width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#famousPhrase{
    margin-top: 100px;
    font-size: 2.2em;
    color: white;
    font-weight: 100;
    font-style: italic;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: block;
    white-space: nowrap;
    border-right: none;
    overflow: hidden;
    width: 0;
}
#activateFarewell{
    cursor:pointer;
    width: 150px;
    height: 30px;
    font-size: 22px;
    color: white;
    text-align: center;
    background-color: black;
    border-radius: 20px;
}
#activateFarewell:hover{
    background-color: white;
    color: black;
}
#imageExplode{
    margin-top: 100px;
    width: 300px;
    height: 80px;
}
@keyframes typing{
    from { width: 0}
}
@keyframes blink {
    50% {border-color: transparent}
}
@media only screen and (max-width: 1200px){
    footer{
        margin-top: 1100px;
    }
    #skillsTitle{
        margin-top: 550px;
    }
    #skills{
        margin-top: 600px;
    }
}
@media only screen and (max-width: 800px){
    #good{
        font-size: 0.6em;
    }
    #veryGood{
        font-size: 0.6em;
    }
    #pro{
        font-size: 0.6em;
    }
    #master{
        font-size: 0.6em;
    }
}
@media only screen and (max-width: 768px){
    #worksTitle{
        margin-top: 100px;
    }
    #work{
        margin-top: 880px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .workCardHeader{
        margin-top: 800px;
    }
    .workCard{
        margin-top: 2vw;
        margin-bottom: 2vw;
    }
    .buttonCard{
        width: 15vw;
    }
    #skillsTitle{
        margin-top: 1150px;
    }
    #skills{
        width: 100vw;
        margin-top: 1200px;
    }
    footer{
        grid-row: 6;
    }
    .redes{
        margin-top: 100px;
        width: 20vw;
        flex-direction: column;
        align-items: center;
    }
    .facebookButton{
        color: white;
        font-size: 50px;
    }
    .linkedinButton{
        color: white;
        font-size: 50px;
    }
    .outlookButton{
        color: white;
        font-size: 50px;
    }
}
@media only screen and (max-width: 550px){
    #work{
        margin-top: 480px;
        flex-direction: column;
    }
    .workCard{
        margin-top: 2vw;
        margin-bottom: 2vw;
    }
    .workCardHeader{
        margin-top: 800px;
    }
    #skillsTitle{
        margin-top: 1250px;
    }
    #skills{
        width: 100vw;
        margin-top: 1300px;
    }
    footer{
        grid-row: 6;
    }
    .redes{
        margin-top: 100px;
        width: 20vw;
        flex-direction: column;
        align-items: center;
    }
    .facebookButton{
        font-size: 50px;
    }
    .linkedinButton{
        font-size: 50px;
    }
    .outlookButton{
        font-size: 50px;
    }
}