html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;
}

/*NAV BAR & GENERAL FUNCTIONS*/

html {
    scroll-behavior: smooth;
    scroll-snap-type: proximity;
}

body {
    background-color: #ffffff;
    max-width: 130em;
    margin: auto;
}

main {
    background-color: #ffffff;
}

header {
    padding: 1em 2em 2em 2em;
    display: flex;
    justify-content: space-between;
    background-color: #ff0000;
    align-items: center;
    position: sticky;
    top: 0;
}

a {
    color: #000000;
    text-decoration: none;
    display: block;
    font-family: "fenwick", sans-serif;
    font-weight: 400;
    font-style: bold;
}

#logo {
    height: 6rem;
    padding-right: 1em;
}

#hamburger {
    width: 5em;
}


h2 {
    font-size: 2rem;
}

li {
    list-style-type: none;
}

/*HEADER PC*/

.header-pc nav ul li {
    display: inline-grid;
    width: min-content;
    white-space: nowrap;
    padding: .1em;
    transition: .3s ease-in-out;
}

.header-pc nav ul {
    font-size: 1.7em;
    text-align: right;
    display: grid;
    grid-auto-flow: column;
    column-gap: 2em;
}

.header-pc nav ul li:hover {
    transform: skew(-20deg, 0deg);
}

.header-pc nav ul li.selected {
    transform: skew(-20deg, 0deg);
}

/*HEADER MOBILE*/

.header-mobile {
    display: none;
}

.header-mobile button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.header-mobile nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 80%;
    right: 0;
    width: 100%;
    z-index: 10;
}

.header-mobile nav.active {
    display: flex;
}

.header-mobile nav ul li {
    text-align: center;
    padding: 1em 0;
    border-bottom: 1px solid #e0e0e0;
}

/*FOOTER*/

footer {
    background-color: #3f5e2e;
}

/*MEDIA QUERIES*/

@media screen and (max-width: 40em) {

    .header-pc {
        display: none;
    }

    .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .portfolio-text {
        display: none;
    }

}


/*RESUME PAGE*/

.resume button {
    cursor: pointer;
    border: none;
    margin: auto;
    overflow: hidden;
    display: block;
    position: relative;
    animation-name: resume;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.120, 0.885, 0.220, 1.000);
}

@keyframes resume {
    0% {
        top:1200px;
        transform: rotate(8deg) scale(1.2);
        filter: drop-shadow(10rem 10rem 2rem #3f5e2e);
    }

    100% {
        top:50px;
        transform: rotate(-3deg);
        filter: drop-shadow(.1rem .1rem .1rem #000000);
    }
  }

/*PORTFOLIO PAGE*/

.portfolio-pc {
    justify-content: space-between;
    display: flex;
    margin: 2em;
}

.portfolio-left ul li {
   display: flex;
   padding: 1em 1em 1em 1em;
   background-color: #ff0000;
}

.portfolio-text {
    flex-direction: column;
    margin: 1em 1em 1em 2em;
    row-gap: 1em;
}

.portfolio-title {
    font-size: 2em;
}

.portfolio-right {
    text-align: right;
    background-color: #ff0000;
}

.portfolio-left, .portfolio-right {
    margin: 1em;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

/*Website Coded & Designed by Jahan Ramezani 2025*/
/*Hosted through Amazon Web Services*/

/*Same as it ever was...*/