html{
    font-size:14px;
}

* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    scroll-behavior: smooth;
  }

.row {
    display: flex;
}
  
.left {
    flex: 40%; 
}

.right {
    flex: 60%;
    margin-top: 60px;
    padding: 5%;
}

.tinyDiv{
    padding-right: 5%;
    padding-left: 5%;
}
.tinyTitle{
    font-size: small;
}

.tinyImage img{
    width: auto;
    height: 40px;
}

Menu{
    padding-left: 2rem;
    padding-top: 0rem;
    text-align: left;
    left: 5%;
    position: fixed; 
}

.description{
    flex:40%; 
    padding-left: 10px
}
.projectSkills{
    flex:20%; 
    padding-left: 5%
}

@keyframes up1 {
    from {
        margin-bottom: 2.5%;
        transform: translateY(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to {
        margin-bottom: -12rem;
        transform: translateY(-100%);
        clip-path: inset(100% 0% 0% 0%);
    }
}

@keyframes down1 {
    from {
        margin-bottom: -12rem;
        transform: translateY(-100%);
        clip-path: inset(100% 0% 0% 0%);
    }
    to {
        margin-bottom: 2.5%;
        transform: translateY(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
}

@keyframes up2 {
    from {
        margin-bottom: 2.5%;
        transform: translateY(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to {
        margin-bottom: -12rem;
        transform: translateY(-100%);
        clip-path: inset(100% 0% 0% 0%);
    }
}

@keyframes down2 {
    from {
        margin-bottom: -12rem;
        transform: translateY(-100%);
        clip-path: inset(100% 0% 0% 0%);
    }
    to {
        margin-bottom: 2.5%;
        transform: translateY(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
}


@keyframes up3 {
    from {
        margin-bottom: 1.25%;
        transform: translateY(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to {
        margin-bottom: -6rem;
        transform: translateY(-100%);
        clip-path: inset(100% 0% 0% 0%);
    }
}

@keyframes down3 {
    from {
        margin-bottom: -6rem;
        transform: translateY(-100%);
        clip-path: inset(100% 0% 0% 0%);
    }
    to {
        margin-bottom: 1.25%;
        transform: translateY(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
}

.gameDrag{
    position: relative;
    display: block;
    animation-duration: 0.5s;
    animation-delay: 0s;
    margin-bottom: -12rem;
    top : 0%;
    clip-path: inset(0% 0% 100% 0%);
}

.experienceDrag{
    position: relative;
    display: block;
    animation-duration: 0.5s;
    animation-delay: 0s;
    margin-bottom: -6rem;
    top : 0%;
    clip-path: inset(0% 0% 100% 0%);
}

.experienceDrag.draggedUp{
    animation-name: up3;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.experienceDrag.draggedDown{
    animation-name: down3;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.gameDrag.draggedUp{
    animation-name: up2;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.gameDrag.draggedDown{
    animation-name: down2;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.jamsDrag{
    position: relative;
    display: block;
    animation-duration: 0.5s;
    animation-delay: 0s;
    margin-bottom: -12rem;
    top : 100%;
    clip-path: inset(0% 0% 100% 0%);
}

.jamsDrag.draggedUp{
    animation-name: up1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.jamsDrag.draggedDown{
    animation-name: down1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.titleHolder{
    padding : 5px;
    flex-basis: 500px;
    background-color: gray;
    flex : 40%;
    border: 3px rgba(0, 0, 0, 0);
    height: auto;
    border-style: solid;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titleHolder img{
    max-width: 100%;
    height: auto;
    width: auto;
    border-radius: 20px;
    
}

.textLink{
    color : black;
    padding : 5px;
    background-color : rgba(128, 128, 128, 0.25);
    height: auto;
    border-style:hidden;
    border-radius: 10px;
    align-items: center;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    display: inline-flex;
    font-size: 1.5rem;
}

.textLink:hover{
    background-color : rgba(94, 94, 94, 0.25);
}

.centerLink{
    margin-right: 5px;
    padding : 5px;
    background-color : rgba(128, 128, 128, 0.25);
    height: auto;
    border-style: hidden;
    border-radius: 10px;
    align-items: center;
    display: inline-flex;
}
.centerLink:hover{
    background-color : rgba(94, 94, 94, 0.25);
}
.centerLink img{
    max-width: 100%;
    height: 2.5rem;
    width: 2.5rem;
    align-self: center;
}

.externalLink{
    margin-right: 5px;
    padding : 5px;
    background-color : rgba(128, 128, 128, 0.25);
    height: auto;
    border-style: hidden;
    border-radius: 10px;
    align-items: center;
    display: inline-flex;
}
.externalLink:hover{
    background-color : rgba(94, 94, 94, 0.25);
}
.externalLink img{
    max-width: 100%;
    height: 25px;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    align-self: center;
}

.project{
    display : flex;
    gap : 20px;
    margin-bottom: 20px;
}

.experience{
    display : flex;
    gap : 20px;
    margin-bottom: 20px;
}

.experienceInfo{
    display : flex;
    gap : 20px;
    margin-bottom: 20px;
}

h1{
    text-align: center;
}
h2{
    text-align: center;
}


.divison{
    padding: 50px;
    align-items: center;
    font-size: 4rem;
    height: 50px;
}

.pic{
    overflow: hidden;
    border-radius: 30%;
    width: auto;
    height: 200px;
}

@keyframes enterLeft{
    from{
        transform: translateX(-100%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to{
        transform: translateX(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
}
@keyframes leaveLeft{
    from{
        transform: translateX(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to{
        transform: translateX(-100%);
        clip-path: inset(0% 0% 0% 0%);
    }
}
@keyframes enterRight{
    from{
        transform: translateX(100%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to{
        transform: translateX(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
}
@keyframes leaveRight{
    from{
        transform: translateX(0%);
        clip-path: inset(0% 0% 0% 0%);
    }
    to{
        transform: translateX(100%);
        clip-path: inset(0% 0% 0% 0%);
    }
}

projectInfo{
    display: block;
    background-color: gray;
    height: 600px;
    border-radius: 30px;
    margin-bottom: 20px;
    justify-content: center;
}

infoButton{
    display: flex;
    height: 15%;
}

infoElem{
    margin:auto;
    display: flex;
    justify-self: center;
    justify-content: center;
    height: 78%;
    width: 90%;
    border-radius: 10px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.indInfoElem{
    position:absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: white;
    clip-path: inset(0% 100% 0% 100%);
    overflow: scroll;
}

.indContentElem{
}

.videoInfo{
    display:flex;
    justify-content: center; 
    margin-left:auto; 
    margin-right: auto;
    max-width : 80%;
    max-height : 80%;
}
.imageInfo{
    display:block; 
    margin-left:auto; 
    margin-right: auto;
    width: auto;
    max-height : 200px;
    max-width: 100%;
}
.imageInfoWithNote{
    display:block; 
    margin-left:auto; 
    margin-right: auto;
    width: auto;
    max-width: 100%;
    max-height : 160px;
}
.imageNote{
    margin-top: 1%;
    font-style: italic;
    text-align: center;
}
.infoText{
    margin-top: 0;

}
.indContentFlexDiv{
    display: flex;
    height: 50%;
    margin-top: 0%;
    margin-bottom: 0%;
}

.indContentDiv{
    padding: 2%;
    justify-content: center;
    align-items: center;
    margin-bottom: -2%;
}


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

.indNav button{
    font-size: 1.25rem;
}

.indNav.inactiveButton button{
    background-color: rgba(171, 171, 171, 0.5);
}
.indNav.inactiveButton:hover  button{
    background-color: rgba(171, 171, 171, 0.8);
}
.indNav.inactiveButton  button{
    background-color: rgba(112, 112, 112, 0.5);
}
.indNav.inactiveButton:hover button{
    background-color: rgba(112, 112, 112, 0.8);
}

.indNavButton{
    border: none;
    border-radius: 5px;
    height: 50%;
    width: 70%;
}

.indInfoElem.startSlide{
    clip-path: inset(0% 0% 0% 0%);
}

.indInfoElem.rightOutSlide{
    animation-name: leaveRight;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.indInfoElem.leftOutSlide{
    animation-name: leaveLeft;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.indInfoElem.rightInSlide{
    animation-name: enterRight;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.indInfoElem.leftInSlide{
    animation-name: enterLeft;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}
.mainTitle{
    text-align: left;
    font-size: 5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
}
.mainSubtitle{
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-style: italic;
    font-weight: normal;
    font-size: 2rem;
    display: block;
}

.projectTitle{
    font-size: 2rem;
}
.projectTitle{
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.projectDesc{
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
}
.projectOverview{
    font-size: 1.25rem;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.infoText{
    font-size: 1.25rem;
}

.idHolder{
    margin-bottom: 0px;
}

@media only screen and (max-device-width : 480px) {
    html{
        font-size:7px;
    }
    .row {
        display: block;
    }
    Menu{
        padding-left: 2rem;
        padding-top: 0rem;
        text-align: left;
        left: 5%;
        position: relative; 
    }
    @keyframes up1 {
        from {
            margin-bottom: 2.5%;
            transform: translateY(0%);
            clip-path: inset(0% 0% 0% 0%);
        }
        to {
            margin-bottom: -24rem;
            transform: translateY(-100%);
            clip-path: inset(100% 0% 0% 0%);
        }
    }
    
    @keyframes down1 {
        from {
            margin-bottom: -24rem;
            transform: translateY(-100%);
            clip-path: inset(100% 0% 0% 0%);
        }
        to {
            margin-bottom: 2.5%;
            transform: translateY(0%);
            clip-path: inset(0% 0% 0% 0%);
        }
    }
    
    @keyframes up2 {
        from {
            margin-bottom: 2.5%;
            transform: translateY(0%);
            clip-path: inset(0% 0% 0% 0%);
        }
        to {
            margin-bottom: -24rem;
            transform: translateY(-100%);
            clip-path: inset(100% 0% 0% 0%);
        }
    }
    
    @keyframes down2 {
        from {
            margin-bottom: -24rem;
            transform: translateY(-100%);
            clip-path: inset(100% 0% 0% 0%);
        }
        to {
            margin-bottom: 2.5%;
            transform: translateY(0%);
            clip-path: inset(0% 0% 0% 0%);
        }
    }

    @keyframes up3 {
        from {
            margin-bottom: 2.5%;
            transform: translateY(0%);
            clip-path: inset(0% 0% 0% 0%);
        }
        to {
            margin-bottom: -12rem;
            transform: translateY(-100%);
            clip-path: inset(100% 0% 0% 0%);
        }
    }
    
    @keyframes down3 {
        from {
            margin-bottom: -12rem;
            transform: translateY(-100%);
            clip-path: inset(100% 0% 0% 0%);
        }
        to {
            margin-bottom: 2.5%;
            transform: translateY(0%);
            clip-path: inset(0% 0% 0% 0%);
        }
    }

    .jamsDrag{
        position: relative;
        display: block;
        animation-duration: 0.5s;
        animation-delay: 0s;
        margin-bottom: -24rem;
        top : 100%;
        clip-path: inset(0% 0% 100% 0%);
    }
    .gameDrag{
        position: relative;
        display: block;
        animation-duration: 0.5s;
        animation-delay: 0s;
        margin-bottom: -24rem;
        top : 0%;
        clip-path: inset(0% 0% 100% 0%);
    }

    .experienceDrag{
        position: relative;
        display: block;
        animation-duration: 0.5s;
        animation-delay: 0s;
        margin-bottom: -12rem;
        top : 0%;
        clip-path: inset(0% 0% 100% 0%);
    }
    projectInfo{
        display: block;
        background-color: gray;
        height: 400px;
        border-radius: 30px;
        margin-bottom: 20px;
        justify-content: center;
    }
 }