/*
@font-face {
    font-family: 'Fira Code';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/firacode/v22/uU9NCBsR6Z2vfE9aq3bh0NSDulI.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
*/

.Overlay {
    pointer-events: none;
}

body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.Overlay {
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s linear;
    transition-duration: 0.3s;
    transition-property: color;
    transition-delay: 0s;
}

h1 {
    font-family: sans-serif;
}

h2 {
    font-family: sans-serif;
}

p {
    margin-bottom: 0px;
    font-family: Fira Code;
}

.background {
    background-color: #0f0f0f;
}

.Bordered {
    border: 1px solid #494949;
}

.divider {
    margin-left: 5px;
    margin-right: 5px;
}

.HorizontalBox {
    /* border: 2px dotted rgb(254, 0, 0); */
    display: flex;
    flex-direction: row;
}

.VerticalBox {
    /* border: 2px dotted rgb(169, 7, 239); */
    display: flex;
    flex-direction: column;
}

.FullPage {
    height: 100vh;
}

.Overlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

.infoPage {
    width: 100%;
    border-bottom: 1px solid #494949;
}

.sidebar {
    width: 350px;
    height: 100%;
    position: fixed;
    border-right: 1px solid #494949;
}

.sidebar-info-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.sidebar-info {
    align-items: left;
    text-align: left;
    margin-bottom: 20px;
}

.sidebar-info-title {
    color: #4d81ee;
    letter-spacing: 3px;
    padding-bottom: 5px;
}

.button {
    
}

.sidebar-info-content {
    margin: 0;
}

.sidebar-info-content > .button svg {
    color: white;
    width: 25px;
    height: 25px;
}

.webPages {
    margin-left: 350px;
    position: relative;
}

.aboutMe {
    flex: 1;
    max-width: 500px;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
    /* border: 2px dotted rgb(0, 0, 255); */
}

.aboutMeSocialLinks {
    margin-top: 50px;
    justify-content: space-between;
}

.myPicture {
    flex: 1;
}
.aboutMeSocialLinks > .socialLink {

}

.myPicture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 1) 25%);
    mask-image: linear-gradient(to right, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 1) 25%); 
    /*
    -webkit-mask-image: linear-gradient(to right, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 1) 25%), linear-gradient(to top, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 1) 25%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 1) 25%), linear-gradient(to top, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 1) 25%); 
    mask-composite: intersect;
    */
}

.projectsPage {
    align-content: center;
    text-align: center;
}

.timelinePage {
    align-content: center;
    text-align: center;
}

h1 {
    color: #ffffff;
}

h2 {
    color: #4d81ee;
}

p {
    color: #979797;
}

@media screen and (max-width: 1360px) {
    .sidebar {
        display: none;
    }

    .webPages {
        margin-left: 0px;
    }
}

@media screen and (max-width: 660px) {
    .myPicture {
        display: none;
    }
}

