/*Global style*/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    color: #8892B0;
    font: 16px "Segoe UI";
    font-weight: 500;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

html {
    scroll-behavior: smooth;
    display: flex;
    flex-wrap: wrap;
    justify-content: initial;
    margin-bottom: 0;
}

:root {
    --blue-color: rgb(10, 25, 47);
    --menu-color: linear-gradient(to bottom, rgb(10, 25, 47), rgb(24, 45, 77));
    --nav-color: linear-gradient(to top, rgba(10, 25, 47, 0.99), rgb(10, 25, 47));
    --nav-shadow: 0 0.5rem 1rem rgb(9, 22, 40);
    --project-content-color: rgba(23, 43, 71, 0.883);
    --card-background: rgb(23, 42, 69) 50%;
    --sun: none;
    --moon: block;
}

.dark-theme {
    --blue-color: rgb(14, 14, 14);
    --menu-color: linear-gradient(to bottom, rgb(14, 14, 14), rgb(22, 22, 22));
    --nav-color: linear-gradient(to top, rgba(14, 14, 14, 0.99), rgb(14, 14, 14));
    --nav-shadow: 0 0.5rem 1rem rgb(13, 11, 7);
    --project-content-color: rgba(21, 22, 22, 0.883);
    --card-background: rgba(21, 22, 22) 50%;
    --sun: block;
    --moon: none;
}

body {
    width: 100vw;
    background-color: var(--blue-color);
    /*Or this color rgb(14, 14, 14);*/
    transition: background-color 1s;
}

.main-container {
    min-height: 100vh;
    margin: 40px 150px 50px 150px;
    padding-top: 80px;
}

a {
    text-decoration: none;
    display: inline-block;
}

::selection {
    background: rgb(46, 46, 73);
}

/* font awesome icons */

.fa-github,
.fa-github-square,
.fa-external-link-alt,
.fa-linkedin,
.fa-codepen,
.fa-instagram{
    color: #CCD6F6 !important;
}

.fa-github:hover,
.fa-github-square:hover,
.fa-external-link-alt:hover,
.fa-linkedin:hover,
.fa-codepen:hover,
.fa-instagram:hover{
    color: #1fe8b6 !important;
}

/*Underline style for links*/

.link-underline {
    color: #1fe8b6;
    font: 16px "Segoe UI";
    font-weight: 500;
    z-index: 1;
    cursor: pointer;
}

.link-underline::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #1fe8b6;
    transition: width .5s;
}

.link-underline:hover::after {
    width: 100%;
    transition: width .5s;
}


/*Title section*/

.title {
    position: relative;
    display: flex;
    margin-bottom: 50px;
    max-width: 70vw;
}

.title h1 {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    font-size: 1.8rem;
    font-family: "Segoe UI";
    font-weight: 700;
    opacity: 1;
    color: #CCD6F6;
}

.title h1 span {
    margin-right: 10px;
    color: #1fe8b6;
    font-family: "Fira Code", monospace;
    font-size: 1.3rem;
    font-weight: lighter;
}

.title h1::after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 100%;
    background-color: rgb(48, 60, 85);
    position: relative;
    margin-left: 20px;
    box-sizing: inherit;
}


/*particles background*/

#particles-js {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: none;
}


/*Preloader page*/

.pace {
    pointer-events: none;
    user-select: none;
    z-index: 2000;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50vw;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background: #1b1b1b;
}

.pace .pace-progress {
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    max-width: 50vw;
    position: fixed;
    z-index: 400;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #1fe8b6;
}

.pace.pace-inactive {
    display: none;
}

#preloader {
    z-index: 300;
    width: 100%;
    height: 100%;
    background: var(--blue-color);
    overflow: hidden;
    position: fixed;
    vertical-align: middle;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.p .logo {
    position: absolute;
    top: 10%;
    left: 45%;
    transform: translate(-50%, -50%);
    padding-bottom: 200px;
}

.p .logo img {
    width: 100px;
    height: 100px;
}

.p {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #CCD6F6;
    font-family: "Fira Code", monospace;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}


/* Animation scroll */


/*Header style*/

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav-list {
    float: right;
    margin-right: 20px;
}

.nav-list li {
    display: inline-block;
    line-height: 30px;
    margin: 12px 5px;
    padding: 0 5px;
    border-radius: 3px;
}

.nav-list li a {
    letter-spacing: .1rem;
}

.nav-link {
    color: rgb(234, 236, 245);
    padding: 7px 10px;
    border-radius: 3px;
    font-family: "SF Mono", monospace;
    font-size: 0.8rem;
}

.navbar {
    position: fixed;
    padding: 0 40px 0 0;
    width: 100%;
    background: none;
    z-index: 101;
}

.logo {
    padding: 5px 40px;
}

.logo img {
    width: 45px;
    height: 45px;
}

.resume {
    border: 1px solid rgb(100, 255, 218);
    border-radius: 3px;
    background: none;
    display: inline-block;
    line-height: 36px;
    margin: 10px 5px;
    padding: 0 15px;
}

.resume:hover {
    background-color: rgba(100, 255, 219, 0.123);
}

.resume a {
    color: rgb(100, 255, 218);
    font-size: 0.9rem;
    font-family: "Poppins";
}

.animate {
    background: var(--nav-color);
    box-shadow: var(--nav-shadow);
}

.nav-list li a span {
    color: #1fe8b6;
    font-family: "Fira Code", monospace;
    font-size: 0.7rem;
}


/*Change theme color button*/

.theme-btn {
    position: fixed;
    top: 19px;
    right: 15px;
    display: flex;
    z-index: 200;
}

.button svg {
    width: 20px;
    height: 20px;
    fill: aliceblue;
}

.button {
    background-color: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.light {
    display: var(--sun);
}

.dark {
    display: var(--moon);
}


/*end header nav*/


/*start home*/

.main-info-section {
    display: block;
    justify-content: left;
    padding: 50px 120px 0 0;
}

.hi {
    font-family: "Fira Code", monospace;
    color: #1fe8b6;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2.5px;
    padding-left: 2px;
    margin-top: 50px;
}

.name {
    color: #CCD6F6;
    font-family: "San Francisco", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
}

.what {
    color: rgb(136, 146, 176);
    font-family: "San Francisco", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
}


/*cursor*/

.txt-input {
    border-right: 0.2rem solid #1fe8b6;
    animation: typewrite 4s steps(40) 1s 1 normal both, blinkTextCursor 0.8s steps(40) infinite normal;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 0.2rem;
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: #1fe8b6;
    }
    to {
        border-right-color: transparent;
    }
}


/*cursor*/

.who {
    color: #8892B0;
    font: 17px "Segoe UI";
    margin: 2.2rem 0 1.8rem 0;
    font-weight: 500;
    max-width: 30rem;
}

.button2 {
    color: #1fe8b6;
    font-family: "Fira Code", monospace;
    font-size: 0.9rem;
    border: 1px solid #1fe8b6;
    border-radius: 3px;
    padding: 20px 25px;
    margin-left: 5px;
    letter-spacing: 1px;
    position: relative;
    top: 40px;
    overflow: hidden;
    transition: all .5s;
}

.button2:hover {
    background-color: rgba(100, 255, 219, 0.15);
}


/*About section start*/

.about-me-info {
    max-width: 800px;
    box-shadow: 1rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 30px 20px 20px 20px;
}

.about-me-info p {
    color: #8892B0;
    font: 16px "Segoe UI";
    font-weight: 500;
}


/*triangle style list start*/

.about-me-info ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 250px));
    margin: 20px 0px 0px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    padding-left: 20px;
    margin-block-start: 1.5em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}

.about-me-info ul li {
    font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", "Lucida Console", monospace;
    font-size: 14px;
    font-weight: 500;
    display: list-item;
    color: rgb(136, 146, 176);
    padding: 5px 0;
}

.about-me-info ul li::before {
    content: "▹";
    color: rgb(100, 255, 218);
    font-size: 14px;
    line-height: 10px;
    padding-right: 10px;
}


/*triangle style list end*/

.core {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.me {
    margin-top: 30px;
}

.me img {
    height: 350px;
    background-color: none;
    object-fit: contain;
}


/*About section end*/


/*-----------Work start----------------*/

.work-container {
    margin-bottom: 50px;
}

.project-container {
    margin: 60px auto;
}

.project {
    margin-top: 30px;
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(12, 1fr);
    -ms-grid-rows: (1fr);
    grid-template-rows: repeat(6, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-content {
    position: relative;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1 / 7;
    grid-row: 1 / -1;
    z-index: 1;
}

.otherDirectionContent {
    grid-column: 6 / -1;
    grid-row: 1 / -1;
}

.project-content .project-label {
    color: #64ffda;
    font-family: monospace;
}

.project-content .project-title a {
    font-size: 1.6rem;
    margin: 10px 0 30px 0;
    color: rgba(204, 214, 246, 0.876);
    cursor: pointer;
}

.project-content .project-title a:hover {
    color: rgb(100, 255, 218);
}

.project-content .project-details {
    font-size: 15px;
    line-height: 1.5;
    color: #eee;
}

.project-content .project-details p {
    background-color: var(--project-content-color);
    padding: 20px 25px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .project-content .project-details p {
        background-color: transparent;
        padding: 20px 0;
    }
    .project-img {
        grid-column: 1 / -1;
        opacity: 0.25;
    }
    .project-content {
        grid-column: 1 / -1;
        padding: 40px;
    }
}

.project-details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 20px;
}

.project-details ul li {
    margin-right: 20px;
    color: #aaa;
    font-family: monospace;
}

.project-img {
    position: relative;
    z-index: 0;
    background-color: #64ffda;
    background: linear-gradient(0.4turn, #64ffda, #64ff8d);
    border-radius: 5px;
    grid-column: 6 / -1;
    grid-row: 1 / -1;
    cursor: pointer;
}

.otherDirectionImage {
    grid-column: 1 / 8;
    grid-row: 1 / -1;
}

.otherDirectionUl {
    flex-direction: row-reverse;
}

.otherDirectionTitle {
    text-align: end;
}

.project-img:hover {
    background-color: none;
    background: none;
}

@media screen and (max-width: 768px) {
    .project-img {
        height: 100%;
    }
    .project {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .project-img img {
        -o-object-fit: cover;
        object-fit: cover;
        width: auto;
        height: 100%;
    }
}

.project-img img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

.project-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background-color: #0a192f;
    mix-blend-mode: screen;
    border-radius: 2px;
}

.project-img img {
    border-radius: 2px;
    position: relative;
    mix-blend-mode: multiply;
    -webkit-filter: grayscale(100%) contrast(1);
    filter: grayscale(100%) contrast(1);
}

.project-link a {
    margin: 25px 25px 0 0;
}

.project-link a img {
    width: 25x;
    height: 25px;
}

.project-link a:hover {
    transform: translateX(3px) translateY(-3px);
    transition: 0.2s;
}


/*Work container 2*/

.work-container2 {
    margin-top: 250px;
    margin-bottom: 60px;
}

.work-container-Archive {
    margin-top: 50px;
    margin-bottom: 60px;
}

.archive {
    text-align: center;
    white-space: nowrap;
    padding-bottom: 2rem;
}

.archive h1 {
    color: #CCD6F6;
    font-family: "San Francisco", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    padding-top: 1rem;
}

.archive a {
    letter-spacing: 1.5px;
    position: relative;
}

.archive-title {
    text-align: left;
    margin-left: 45px;
}

.archive-title h1 {
    color: #CCD6F6;
    font-family: "San Francisco", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.archive-hi {
    font-family: "Fira Code", monospace;
    color: #1fe8b6;
    font-size: 18px;
    font-weight: bold;
    padding-left: 2px;
    padding-bottom: 2rem ;
}

.container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(280px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 1em;
    padding: 10px;
}

.card {
    background: var(--card-background);
    opacity: 0.9;
    background-size: cover;
    border-radius: 5px;
    -webkit-box-shadow: 4px 5px 10px rgba(39, 44, 49, 0.35), 1px 3px 4px rgba(39, 44, 49, 0.03);
    box-shadow: 4px 5px 10px rgba(45, 49, 53, 0.35), 1px 3px 4px rgba(39, 44, 49, 0.03);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
    min-width: 250px;
}

.card:hover {
    -webkit-box-shadow: 0 0 1px rgba(39, 44, 49, 0.1), 0 3px 16px rgba(39, 44, 49, 0.07);
    box-shadow: 0 0 1px rgba(39, 44, 49, 0.1), 0 3px 16px rgba(39, 44, 49, 0.07);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate3D(0, -3px, 0);
    transform: translate3D(0, -3px, 0);
}

.card .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    min-height: 300px;
    padding: 20px;
}

.card .content {
    display: inline-block;
    padding: 0;
    margin: 20px;
}

.folder {
    margin-bottom: 30px;
}

.folder img {
    width: 40px;
    height: 40px;
}

.work-container2-link {
    float: right;
    margin: 10px;
}

.work-container2-link a img {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

.work-container2-link a img:hover {
    transform: translateX(-2px) translateY(-2px);
    transition: 0.2s;
}

.container .card .content header {
    display: inline;
}

.container .card .content header h2 {
    margin: 0 0 0.5em;
    color: #CCD6F6;
    font-family: "San Francisco", "SF Pro Text", "Helvetica Neue", "Segoe UI";
    font-size: 1.5rem;
    font-weight: 700;
}

.container .card .content section p {
    font-family: "Segoe UI";
    color: #8892B0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}


/*-----------Work end----------------*/


/*---Contact start---*/

.contact {
    margin-top: 200px;
    padding-top: 100px;
}

.contact div {
    text-align: center;
}

.contact div h1 {
    margin-top: 10px;
    white-space: nowrap;
    font-size: 3.5rem;
    font-family: "Segoe UI";
    font-weight: 700;
    color: #CCD6F6;
}

.contact div h1 span {
    color: #1fe8b6;
    font-family: "Fira Code", monospace;
    font-size: 1rem;
    font-weight: lighter;
}

.contact div p {
    padding: 0 80px;
    color: #8892B0;
    font: 17px "Segoe UI";
    margin: 2.2rem 0 1.8rem 0;
    font-weight: 500;
}

.contact .button2 {
    padding: 15px 20px;
}


/*---Contact end---*/


/*Footer*/

.socialnav {
    display: none;
}

.socialMedia {
    position: fixed;
    bottom: 0;
    left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.socialMedia ul {
    list-style-type: none;
}

.socialMedia ul li {
    padding-top: 28px;
}

.socialMedia ul li hr {
    background-color: rgb(136, 146, 176);
    height: 100px;
    width: 1px;
    border: 0px;
    margin-left: 10px;
}

.mail {
    position: fixed;
    bottom: 0px;
    right: -188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mail hr {
    background-color: rgb(136, 146, 176);
    height: 100px;
    width: 1px;
    border: 0px;
}

.mail a {
    color: rgb(136, 146, 176);
    font-family: "Fira Code", monospace;
    font-size: 16px;
    letter-spacing: 2px;
    transform: rotate(450deg) translateX(-135px) translateY(125px);
}

.mail a:hover {
    transform: rotate(450deg) translateX(-140px) translateY(125px);
    transition: 0.2s;
}


/* Copywrite */

.copywrite {
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 300px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: rgb(136, 146, 176);
}


/*  M E D I A   Q U E R Y  */

@media (max-width: 1400px) {
    #about {
        min-height: 100vh;
    }
}

@media (max-width: 1200px) {
    div.logo {
        padding-right: 50px;
    }
    .nav-list li a {
        font-size: 13px;
    }
}

@media (max-width: 1050px) {
    div.logo {
        padding-right: 0px;
    }
    .nav-list {
        float: right;
        margin-right: 0;
    }
    .nav-list li {
        padding: 0 0;
    }
    .nav-list li a {
        font-size: 12px;
    }
}

@media (max-width: 1160px) {
    .name {
        font-size: 4rem;
    }
    .what {
        font-size: 3.2rem;
    }
}

@media (max-width: 1050px) {
    .name {
        font-size: 3.7rem;
    }
    .what {
        font-size: 2.9rem;
    }
}

@media (max-width: 990px) {
    .nav-list li {
        margin: 12px 0;
        padding: 0 0;
        margin: 0 0;
    }
    .nav-list {
        float: right;
        margin-right: 0;
    }
    .nav-list li a {
        font-size: 12px;
    }
    .name {
        font-size: 3.5rem;
    }
    .what {
        font-size: 2.6rem;
    }
}

@media (max-width: 930px) {
    .name {
        font-size: 3.4rem;
    }
    .what {
        font-size: 2.4rem;
    }
}

@media (max-width: 890px) {
    .name {
        font-size: 3.4rem;
    }
    .what {
        font-size: 2.2rem;
    }
}

@media (max-width: 850px) {
    .name {
        font-size: 3.4rem;
    }
    .what {
        font-size: 2rem;
    }
}


/*start hamburger nav*/

@media (max-width: 700px) {
    .work-container2 h1 {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .p .logo {
        padding-bottom: 150px;
    }
    .socialMedia {
        display: none;
    }
    .mail {
        display: none;
    }
    .main-container {
        margin-right: 40px;
        margin-left: 40px;
    }
    .main-info-section {
        padding: 50px 0 0 0;
    }
    div.logo {
        padding-left: 40px;
        z-index: 101;
    }
    .who {
        font: 16px "Segoe UI";
        margin: 2.2rem 0 1rem 0;
        font-weight: 500;
    }
    .button2 {
        font-size: 0.8rem;
        padding: 15px 20px;
        margin-left: 5px;
    }
    .about-me-info {
        margin: 2px;
        max-width: 80vw;
    }
    .about-me-info ul {
        grid-template-columns: repeat(2, minmax(140px, 250px));
    }
    .nav-list li {
        padding: 5px 5px;
        margin: 10px;
    }
    .top-nav {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: -95vh;
        background: var(--menu-color);
        border-bottom-right-radius: 100%;
        border-bottom-left-radius: 100%;
        transition: all 500ms cubic-bezier(1, 0, 0, 1);
        z-index: 100;
    }
    .top-nav.open {
        top: 0;
        border-radius: initial;
    }
    .nav-list {
        width: 100%;
        height: 100vh;
        padding-top: 60px;
        position: fixed;
        top: -105vh;
    }
    .nav-list.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 0;
        transition: all 1000ms;
    }
    .menu-toggler {
        position: fixed;
        top: 0.8rem;
        right: 3rem;
        width: 2rem;
        height: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 101;
        transition: transform 600ms ease-out;
    }
    .menu-toggler.open {
        transition: rotate(-45deg);
    }
    .bar {
        background: linear-gradient(to right, #1fe8b6, #1fe850);
        width: 100%;
        height: 4px;
        border-radius: .8rem;
        z-index: 100;
    }
    .menu-toggler.open {
        transform: rotate(225deg)
    }
    .bar.half {
        width: 50%;
    }
    .bar.start {
        transform-origin: right;
        transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.75);
    }
    .open .bar.start {
        transform: rotate(450deg) translateX(.9rem);
    }
    .bar.end {
        align-self: flex-end;
        transform-origin: left;
        transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.75);
    }
    .open .bar.end {
        transform: rotate(-450deg) translateX(-.1rem);
    }
    .menu {
        display: none;
    }
    .p .logo img {
        width: 80px;
        height: 80px;
    }
    .p {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #CCD6F6;
        font-family: "Fira Code", monospace;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
    }
    .contact div p {
        padding: 0 50px;
    }
    .socialnav {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 4rem;
    }
    .socialnav ul {
        list-style-type: none;
    }
    .socialnav ul li {
        padding: 0 1rem 0 1rem;
    }

    i.fas,
    i.fab {
        border: none;
    }

    .me img {
        height: 300px;
    }

}


/*end hamburger nav*/

@media (max-width: 480px) {
    .p .logo {
        padding-top: 10px;
        padding-bottom: 115px;
    }
    .copywrite p{
        font-size: small !important;
    }
    .contact div h1 {
        margin-top: 10px;
        white-space: nowrap;
        font-size: 2.5rem;
        font-family: "Segoe UI";
        font-weight: 700;
        color: #CCD6F6;
    }
    .title h1 {
        font-size: 1.5rem;
    }
    .archive h1 {
        color: #CCD6F6;
        font-family: "San Francisco", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        padding-top: 1rem;
    }
    .main-info-section {
        padding: 25px 0 0 0;
    }
    .what {
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .name {
        font-size: 3rem;
    }
    
    .me img {
        height: 280px;
    }

}

@media (max-width: 355px) {
    .what {
        font-size: 1.2rem;
    }
}