*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

a { 
    text-decoration: none;
}

body {
    font-family: 'Fira Code', monospace;
    background-color: #030711;;
    color: #a8a8a8;
    margin: 0;
    padding: 20px;
}

header {
    display: flex;
    font-size: 0.8em;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    justify-content: space-around;
}

header .header-text {
    color: white;
    font-size: 1.2em;
}

header div {
    margin: 0px 10px;
}

@media (min-width: 768px) {
    header {
        flex-direction: row;
        align-items: center;
    }
}

.container {
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
}

.sidebar {
    width: 400px;
    padding: 20px;
    margin-right: 20px;
}

.container .content {
    flex: 1;
    padding: 20px;
}

.hero {
    color: white;
    margin: 30px 0px;
    align-items: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    color: #a68bfa;
}

.section-header {
    font-size: 0.9em;
    color: #a68bfa;
    margin: 30px 0 10px 0;
}

.card .card-content {
    background: #101827;
    border: gray 1px solid;
    border-radius: 10px;
    padding: 30px 50px;
    margin: 10px 0;
}

.card-content .card-headline {
    font-size: 0.9em;
    color: #7dd3fc;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    border-right: 0.15em solid #7dd3fc;
}

.card-headline.experience {
    animation: typing 1.5s steps(20, end), blink 1s step-end infinite;
}

.card-headline.education {
    animation: typing 1.5s steps(19, end), blink 1s step-end infinite;
}

.card-headline.leadership {
    animation: typing 1.5s steps(39, end), blink 1s step-end infinite;
}

.card-content .folder-name {
    color: #f472b7;
    font-weight: bold;
}

.resume-button {
    display: inline-block;
    background: linear-gradient(to right, #8b5cf6, #06b6d4);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resume-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink {
    50% { border-color: transparent }
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;  
}
.orb.one {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -50px;
}
.orb.two {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -80px;
    animation-delay: 3s;
}