html {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    min-height: 100vh;
}

body {
    max-width: 64rem;
    color: #f3f4f6;
    font-family: monospace;
    padding: 1rem;
    margin-right: auto;
    margin-left: auto;
}

.hidden {
    display: none !important;
}

header {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.header-1 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideup 0.69s ease-out forwards;
    animation-delay: 0.1s;
}

.header-2 {
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.35rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    animation: slideup 0.69s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.julswebsite {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to right, #22d3ee, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.version {
    margin-left: 1rem;
    font-size: 0.8rem;
    background-color: rgba(30, 58, 138, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    grid-column: span 1;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    animation: cardentrance 0.6s ease-in-out forwards;
    transition: border-color 0.69s ease;
}

.card:hover {
    border-color: rgba(148, 163, 184, 0.5);
}

.card1-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation-delay: 0.2s;
}

.card1-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    animation-delay: 0.4s;
    gap: 0.5rem;
    padding-top: 0;
}

.card1-2 span {
    margin-top: 0;
    margin-bottom: 0.2rem;
}

.card1-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-top: 0;
    animation-delay: 0.6s;
}

.card2-1 {
    animation-delay: 0.8s;
}

.card2-2 {
    animation-delay: 1s;
}

.card2-2 .title1 {
    margin-bottom: 0;
}

.card0-1 {
    background: rgba(42, 15, 15, 0.6);
    grid-column: span 3;
    padding: 0.5rem 1.5rem;
}

.pfp {
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    margin-bottom: -1.2rem;
}

.jul {
    font-size: 2rem;
    font-weight: bold;
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    margin-bottom: 1rem;
}

.jul-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.verify {
    height: 2.8rem;
    width: 2.8rem;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
    margin-left: 5px;
    margin-top: 10px;
}

.favquote {
    display: flex;
    align-items: flex-start;
}

.quote-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    animation: uptodown 1s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.quote-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0;
    animation: uptodown 1s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.quote-line {
    opacity: 0;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.5rem;
    animation: lefttoright 1s ease-out forwards;
}

.quote-line:nth-child(1) {
    animation-delay: 1s;
}

.quote-line:nth-child(2) {
    animation-delay: 1.2s;
}

.quote-line:nth-child(3) {
    animation-delay: 1.4s;
}

.quote-line:nth-child(4) {
    animation-delay: 1.6s;
}

.quote-list {
    list-style-type: none;
    margin-left: -2rem;
}

footer a {
    color: rgb(191 219 254);
    text-decoration: underline;
}

footer a:hover {
    color: rgb(147 197 253);
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes longerfadein {
    1% {
        opacity: 0;
    }
    69% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideup {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardentrance {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lefttoright {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes uptodown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes downtoup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

footer {
    text-align: center;
    color: rgb(147 197 253 / 0.8);
    margin-top: 3rem;
    font-size: 0.9rem;
    line-height: 1.2rem;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    opacity: 0;
    animation: longerfadein 2s ease-in-out forwards;
}

.title1 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bigemoji {
    width: 2rem;
    height: 2rem;
    display: inline;
    vertical-align: middle;
    margin-bottom: 0.5rem;
}

.smallemoji {
    width: 1.5rem;
    height: 1.5rem;
    display: inline;
    vertical-align: middle;
    margin-bottom: 0.5rem;
}

.socials {
    display: grid;
    grid-template-columns: repeat(6, min-content);
    grid-template-rows: repeat(1, 1fr);
    margin-top: 1.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: clamp(1rem, 5vw, 3rem);
    justify-items: start;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f3f4f6;
    fill: #f3f4f6;
    text-decoration: none;
    transition: filter 1s ease;
    animation: downtoup 1s ease-out forwards;
    animation-delay: 2s;
    opacity: 0;
}

.icon:nth-child(1) {
    animation-delay: 1s;
}

.icon:nth-child(2) {
    animation-delay: 1.15s;
}

.icon:nth-child(3) {
    animation-delay: 1.3s;
}

.icon:nth-child(4) {
    animation-delay: 1.45s;
}

.icon:nth-child(5) {
    animation-delay: 1.6s;
}

.icon:nth-child(6) {
    animation-delay: 1.75s;
}

.icon:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.icon object, .icon img, .icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (min-width: 740px) {
    body {
        padding: 2rem;
    }

    header {
        flex-direction: row;
    }

    .header-1 {
        margin-bottom: 0;
    }

    .julswebsite {
        font-size: 2.25rem;
    }

    section {
        grid-template-columns: repeat(3, 1fr);
    }

    .card2-1 {
        grid-column: span 2;
    }

    .card2-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .socials {
        grid-template-columns: repeat(3, min-content);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 420px) {
    .quote-icon {
        display: none;
    }

    .socials {
        grid-template-columns: repeat(3, min-content);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
    }
}

