@font-face {
    font-family: 'PP Editorial New';
    src: url('PPEditorialNew-Regular.otf')
}

@font-face {
    font-family: "Inter", sans-serif;
    src: url('Inter-Regular.ttf')
}

body {
    background-color: #00020B;
    color: #f5faff;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.25em;
    text-align: justify;
}

ul {
    list-style-type: circle;
    font-size: 1.25em;
}


/* * {outline: 1px solid white;} */

.main {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    width: 80vw;
    max-width: 1200px;
}

#email {
    font-family: 'PP Editorial New';
}

.introduction {
    transform: translateY(20vh);
    width: 600px;
    line-height: 22px;
}

.content {
    line-height: 22px;
}

.project-detail-grid {
    display: flex;
    gap: 50px;
    grid-template-columns: auto auto;
}

@media only screen and (max-width: 1100px) {
    .project-detail-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr;
    }

}

#project-img {
    border-radius: 10px;
    width: 100%;
    min-width: 400px;
}

.project-container {
    display: grid;
    grid-template-columns: 2px auto auto;
    width: 180px;
    user-select: none;
    transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.project-container:hover {
    width: 190px;
    grid-template-columns: 25px auto auto;
}

.project-year-title {
    display: grid;
    gap: 5px;
    grid-template-rows: auto auto;
}

#project-title {
    font-size: 1.75em;
}

#project-year {
    font-size: 1em;
}

#project {
    background-color: #E3F0FF;
    width: 100%;
    height: 100%;
}

footer {
    margin-top: 12.5%;
    display: flex;
    justify-content: space-between;
    bottom: 2.6%;
    left: 0;
    width: 100%;
    font-size: 0.75em;
    color: #E3F0FF;
}

#absolute {
    position: absolute;
}

header {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 2.5%;
    left: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: #E3F0FF;
    transition: 350ms cubic-bezier(0.18, 0.89, 0.32, 1.27);
}

a:hover {
    transform: scale(1.15);
}


.nav {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 35px;
}

#jason-s {
    font-family: 'PP Editorial New';
}

h1 {
    font-family: 'PP Editorial New';
    font-weight: normal;
    font-size: 4em;
}

h2 {
    font-family: 'PP Editorial New';
    font-weight: normal;
    font-size: 3em;
}

h3 {
    font-family: 'PP Editorial New';
    font-weight: normal;
    font-size: 2em;
}

.up {
    animation: 800ms cubic-bezier(0.18, 0.89, 0.32, 1.27) up-intro;
    animation-fill-mode: both;
}

.pfp-anim {
    animation: 800ms cubic-bezier(0.18, 0.89, 0.32, 1.27) pfp-intro;
    animation-fill-mode: both;
}

.d-1 {
    animation-delay: 50ms;
}

.d-2 {
    animation-delay: 100ms;
}

.d-3 {
    animation-delay: 150ms;
}

#hey-im-jason {
    display: inline-flex;
}

.intro-details {
    animation: 900ms cubic-bezier(0.18, 0.89, 0.32, 1.27) left-in-intro;
    animation-fill-mode: both;
}

.page-intro {
    animation: 600ms cubic-bezier(0.22, 0.61, 0.36, 1) page-intro;
}

.future-grid {
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
}
.future-title-desc {
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
    text-align: justify;
}

.future-title {
    font-family: 'PP Editorial New';
    font-size: 2em;
}

.future-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
}

#hackathon { background-image: url("images/hackathon.png"); }
#react_and_ts { background-image: url("images/react_and_ts.png"); }
#not_homeless { background-image: url("images/not_homeless.png"); }

.future-desc {
    text-align: justify;
    line-height: 20px;
}

@media only screen and (max-width: 950px) {
    .future-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2vw;
    }
    
    .future-img {
        border-radius: 10px;
        width: 100%;
      }

}


.future-img-detail {
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 25px;
    margin-bottom: 50px;
}

table {
    width: 100%;
    text-align: left;
}

td {
    padding: 15px;
}

th {
    padding: 15px;
    font-size: 1.5em;
}

tr:nth-child(even) {
    background-color: #000312;
  }

  tr:nth-child(odd) {
    background-color: #00051f;
  }

@keyframes up-intro {
    0% {
        transform: translateY(150%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes page-intro {
    0% {
        transform: translateY(10%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes pfp-intro {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes left-in-intro {
    0% {
        transform: translateX(-5%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}