:root{
    --dark: rgb(30, 30, 32);
    --white: rgb(255, 255, 255);
    --accent: rgb(212, 99, 203);
    --accent2: rgb(172, 31, 112);
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;

    font-family: "Dosis", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;   
    color: var(--white);

    background-color: var(--dark);
    background-image: url(../images/backgroundIcon.svg);
    background-size: 5vh;
    background-position-x: center;
}

h1{
    font-family: "Dosis", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;   
    font-size: 64px;
    color: var(--white);
}

.accentColor{
    color: var(--accent);
}

.p-fixed{
    position: fixed;
}
.h-sort, .m-h-sort{
    display: flex;
    flex-direction: row;
}

.h-100{
    height: 100vh;
}
.w-100{
    width: 100vw;
}
.d-none{
    display: none !important;
}
.sketchfab-iframe iframe{
    width: 100%;
    aspect-ratio: 16/10;
}
.reachMe{
    margin-bottom: 15px;
}
#homePage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;

    pointer-events: none;
}

#overlay, #bigPicture, #bigVideo{
    position: fixed;
    z-index: 1000;
    width: 100vw;
    height: 100vh;    
    pointer-events: none;

}
#bigPicture, #bigVideo{
    pointer-events: all;
}
#bigPicture:hover, #bigVideo:hover{
    cursor: pointer;
}
#overlay > .tl-o{
    position: absolute;
    top: 0;
    left: 0;
    width: 20vh;
    }
#overlay > .br-o{
    position: absolute;
    bottom: 0;
    right: 0;
    transform:rotate(180deg) ;
    width: 20vh;
}
#bigPicture img, #bigVideo video,#bigVideo video source{
    width: 75%;
    max-height: 80%;
    padding: 2.5%;
    background-color: white;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

h2{
    font-family: "Dosis", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
    margin: 0;
    color: var(--white);
}
a.whiteA{
    text-decoration: none;
    color: var(--white);
}
h3{
    font-size: 24px;
    font-weight: 400 ;
}

.projectPage{
    flex-direction: column;
}

section{
    margin: 10vh 30px 0 1.5vw;
}

section p{
    font-size: 20px;

}
section a{
    color: var(--accent2);
    font-size: 1.1em;
}
section strong{
    color: var(--accent);
}

.labelContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}
.labelContainer label{
    display: block;
    padding: 10px;
    background-color: var(--accent);
    border-radius: 10px;
    color: var(--white);
    user-select: none;
    -webkit-user-select: none;
}
.cvButton{
    margin: 20px 0;
    display: block;
    padding: 15px 25px;
    background-color: var(--accent2);
    border-radius: 10px;
    font-size: 20px;
    color: var(--white);
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
}
.cvButton .fa-solid{
    color: var(--white);
    font-size: 16px;
    margin-right: 10px;
    
}
.imageContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}
.imageContainer img,.imageContainer video, .imageContainer iframe{
    width: calc(50% - 5px);
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center;
}
.imageContainer video{
    width: calc(100% - 5px);
}
.ml-30{
    margin-left: 15px;
}
.underline{
    padding-bottom: 10px;
    font-size: 24px;
    position: relative;
}
.underline::after{
    position: absolute;
    content: '';
    height: 2px;
    width: 10%;
    background-color: var(--accent);

    bottom: 0px;
    left: 0px;

}
.border{
    /* box-shadow: 0 0 14px 0 rgb(250, 230, 193);
    box-shadow: 0 0 30px 0 inset rgb(250, 230, 193); */
    border: 2px dashed var(--accent);

    border-radius: 20px;
    padding: 20px 0;
}


#aboutMe{
    width: 70vw;
    position: absolute;
    right: 0;
}
.aboutRight{
    width: 25%;
    margin-left: 5%;
}
.aboutPicture{
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.aboutPicture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.fa-solid,.fa-brands{
    color: var(--accent);
    width: 20px;
    font-size: 14px;
}
.w-50{
    width: 50%;
}
.w-35{
    width: 35%;
}
.w-40-5{
    width: 40%;
    margin-left: 5%;
}
.form-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.form-row > div {
    width: 100%;
}
input, textarea{
    margin-bottom: 8px;
    margin-top: 8px;
    border: none;
    outline: none ;
    width: calc(100% - 32px);
    font-family: "Dosis", serif;
    padding: 14px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    background-color: transparent;
    color: var(--white);
    resize: none;
}
input[type = "submit"]{
    margin-top: 28px;
    background-color: var(--accent2);
    border: none;
    width: 100%;
}
textarea{
    min-height: 69px;
}
input:focus, textarea:focus{
    border: 2px solid var(--accent2);
}

.m-show{
    display: none;
}
#jumptext{
    display: flex;
    align-items: center;
    justify-content: center;
}
.jump{
    display: block;
    animation: jump infinite 4s ;
}

@keyframes jump{
    0% {
        transform: translateY(0px);
    }
    10% {
        transform: translateY(-10px);
    }
    20% {
        transform: translateY(2px);
    }
    25% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 
// Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    
}

/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) {  
    .h-sort{
        flex-direction: column;
    }
    .m-h-sort{
        flex-direction: column-reverse;
    }
    .w-50, .w-35{
        width: 100%;
        display: flex;
        flex-direction: column;    
        justify-content: center;
        align-items: center;
    }
    .w-40-5{
        margin-top: 5%;
        margin-left: 0%;
        width: 100%;
    }
    .labelContainer, .imageContainer{
        justify-content: center;
    }
    #projectData {
        width: 100vw !important;
        height: 70vh;
        overflow: scroll;
    }
    #overlay{
        display: none;
    }
    #projectsContainer{
        width: 100vw !important;
        height: 60% !important ;
        transform: translateY(25%) !important;
        perspective: -10vw !important;
        align-self: flex-end;
    }
    #projectsContainer .projectImage{
        width: 60%;
    }
    #homePage{
        margin-top: 35%;
        justify-content: flex-start;
    }
    h2{
        text-align: center;
    }
    section{
        margin-top: 10vh;
        padding: 10px;
        margin-left: 0px;
    }
    section p{
        text-align: center;
    }
    .underline::after{
        width: 30%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    #aboutMe {
        width: 100vw;
        height: 70vh;
        overflow: scroll;
    }
    .aboutRight {
        width: 100vw;
        margin-left: 0;
    }
    
    .aboutPicture{
        width: 40%;
        height: 40%;
        aspect-ratio: 1/1;
        overflow: hidden;
        margin:  0 30%;
    }
    .underline{
        text-align: center;
    }
    .reachMe{
        width: 60%;
        margin: 0 20%;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 15px;
    }
    .m-hide{
        display: none;
    }
    .m-show{
        display: flex;
    }
    header{
        background-color: var(--dark) !important;
    }
    .shown .projectImage {
        opacity: 1 !important;
    }
    .shown#projectsContainer{
        height: 30vh !important ;
        transform: unset !important;
    }
}

