:root {
    --text-color: #e5e5e5;
    --text-shadow-color: #262626;
    --text-highlight-color: #e74c4c;
    --cubic-bezier: cubic-bezier(.42, 0, .58, 1);
    scrollbar-color: var(--text-highlight-color) #262626 !important;
    scrollbar-width: thin !important;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #171717;
}

::-webkit-scrollbar-thumb:vertical {
    background-color: var(--text-highlight-color);
}

body, html, * {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

* {
    font-family: 'Inter', serif;
}

body {
    background-color: black;
}

/*#avatar:hover {
    max-width: 100%;
    transition: all .7s ease-in-out;
    transform: scale(2.4);
}

#avatar:not(:hover) {
    max-width: 100%;
    transition: all .7s ease-in-out;
    transform: scale(1);
}*/

.container {
    display: none;
    color: var(--text-color);
    opacity: 0;
    text-align: center;
}

.title {
}

img {
    margin-top: 10%;
    border-radius: 50%;
    width: 200px;
}

.title h1 {
    font-size: 40px;
    padding-top: 20px;
    font-weight: 800;
}

.title p {
    font-size: 25px;
}

.title h3 {
    padding-top: 20px;
    color: var(--text-highlight-color);
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: 300;
}

#splash:after {
    content: "_";
    animation: blink .5s ease-in-out infinite;
}


.socials {
    padding: 20px;
}

.socials svg {
    margin-left: 15px;
    margin-right: 15px;
    padding: 10px;
    width: 50px;
    height: 50px;
    background-color: var(--text-color);
    border-radius: 50%;
}


.projects {
    margin-top: 100px;
    margin-bottom: 300px;
    display: inline-block;
}

.project_container {
    border-radius: 15px;
    border: 3px dashed var(--text-shadow-color);
    max-width: 350px;
    height: 450px;
    margin-top: 50px;
    display: block;
    padding: 20px;
}

.project_container a {
    color: var(--text-highlight-color);
}

.project_container h3 {
    margin-top: 10px;
}

.project_container img {
    border-radius: 0;
    height: 125px;
    width: 135px;
}

.project_container h4 {
    margin-top: 10px;
}

.project_container .first {
    margin-top: 30px;
}

.projects #sad_face {
    color: var(--text-highlight-color)
}

@keyframes appear {
    0% {
        opacity: 0;
        margin-top: 50px;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
    }
}

@keyframes disappear {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        margin-top: -50px;
        filter: blur(10px);
    }
}
