body{
    margin: 0;
}

@font-face{
    font-family: 'ForName';
    src: url('./DeLaFuente.ttf')
}

@font-face{
    font-family: 'Fibon';
    src: url('./Fibon_Sans_Regular.otf')
}


#column-hold{
    display: grid;
    transition: .745s cubic-bezier(0.5, 0, 0.1, 1);   
    overflow-x: hidden;
    grid-template-columns: 50% 50% 50%;
}

/*  Brief CV  */

#column1{
   height: 100vh;
    z-index: 1;
}

#column1-content{
    height: calc(100vh - 6vw);
    width: 50vw;
    padding: 3vw;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#name-slug{

}

#name{      
    font-family: 'ForName';
    font-size: 5em;
    display: flex;
    width: 473px;
    justify-content: center;
}

#animated-name{
    transform-origin: left;
    overflow: hidden;
    
    animation: 2s ease-out animateName;   
}

#slug-line{
    width: 450px;
    font-family: 'Fibon';
    font-size: 2em;
    margin-left: 10px;
    line-height: 40px;
    animation: 2s slideInFromBottom;
}

#tom-lists{
    display: flex;
    justify-content: space-between;
    width: 473px;
}

.tom-list{
    list-style: none;
    padding-left: 10px;
}

.tom-list li{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 21px;
    transition: 1s ease;
    transform: matrix(1,0,0,1,100,0);
    opacity: 0;
}

.tom-list li a{
    text-decoration: none;
    color: black;
}

#skills-list li:hover{
    cursor: default;
}

.tom-list li:first-of-type{
    text-decoration: underline;
    margin-bottom: 5px;
    font-weight: 400;
}




/* Project Slides */
#column2{
    z-index: 2;
    transition: .745s cubic-bezier(0.5, 0, 0.1, 1);
    animation: 2s slideInFromLeft ;
}

.project-slide:hover{
    cursor: pointer;
}

.project-slide, .description-slide{
    height: 100vh;
}

.project-wrapper{
    height: inherit;
}

#dr-mario-background{
    height: inherit;
    width: 100%;
    background: url(./dr-mario-ss.png) no-repeat;
    background-size: cover;
    background-position-x: center ; 
}

#droppy-background{
    height: inherit;
    width: 100%;
    background: url(./droppy.png) no-repeat;
    background-size: cover;
    background-position-x: center ;   
}

#sys-background{
    background: url(./sys.png) no-repeat;
    height: inherit;
    width: 100%;
    background-size: cover;
    background-position-x: center ;  
}

#project2{
    background: darksalmon
}

#project3{
    background: aquamarine;
}


/* Description Slides */

#column3 {
    z-index: 3;
    transition: .745s cubic-bezier(0.5, 0, 0.1, 1);
    
}

.descrip-x{
    font-family: 'ForSlug';
    font-size: 2em;
    position: absolute;
    right: 3vw;
    color: black;
    transition: .745s ;

}

.descrip-x:hover{
    cursor: pointer;
    transform: rotate(40deg);
}

.description-content{
    width: 25vw;
    height: 64vh;
    display: flex;
    flex-direction: column;
    margin:auto;
    padding: 18vh;

}

.description-text{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 36px;
}

.description-links{
    margin-top: 5%;
}

.description-links a{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 24px;
    text-decoration: none;
    color: darkgrey;
}

.description-links a::after{
    content: "";
    width: 0px;
    height: 5px;
    background:  darkgray;
    display: block;
    transition: .745s cubic-bezier(0.5, 0, 0.1, 1);
}

.description-links a:nth-of-type(2):hover::after{
    width:130px;
}

.description-links a:hover::after{
    content: "";
    width: 93px;
    background:  darkgray;
    display: block;
}

.description-links a:hover{
    color: rgb(121, 121, 121);
}

.hidden{
    opacity: 0;
}

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

@keyframes animateName{
    0%{
       width: 0px; 
    }

    100%{
        width: 700px; 
    }
}

@keyframes slideInFromLeft {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    40% {
        transform: translateX(100%);
        opacity: 0;
      }

    100% {
      transform: translateX(0);
    }
  }

  @keyframes slideInFromBottom {
    0% {
      transform: translateY(50%);
      opacity: 0;
    }
    55% {
        transform: translateY(50%);
        opacity: 0;
      }

    100% {
      transform: translateX(0);
      
    }
  }

  @keyframes slideSkills {
    0% {
      transform: translateX(10%);
      
    }
    40% {
        transform: translateX(10%);
        
      }

    100% {
      transform: translateX(0);
      
    }
  }

  @media screen and (max-width: 450px){
    #column-hold{
        grid-template-rows: 75vh 100%;
        grid-template-columns: 100% 100%;
    }

    #column1{
        grid-column: 1 / 2;
    }

    #column1-content{
        position: relative;
        width: 94vw;
        height: calc(75vh - 6vw);
        align-items: center;
    }

    #column2{
        grid-column: 1 / 2;
        grid-row: 2/ 3;
    }

    #name{
        font-size: 3em;
        width: 283px;
    }

    #slug-line{
        font-size: 1em;
        line-height: 20px;
        width: 220px;
    }

    #skills-list li{
        font-size: 1em;
    }

    #column3{
        grid-column: 2 / 2;
        grid-row: 2/ 3;
    }

    .description-content{
        width: 50vw;
        
        padding: 18vh 0;
    }

    .description-text{
        font-size: 1em;

    }
    
  }