@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');

/* Hide scrollbar for all browsers */
html {
    overflow: auto;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    animation: move-line 10s linear infinite;
}

.line:nth-child(1) { left: 5%; animation-duration: 10s; }
.line:nth-child(2) { left: 15%; animation-duration: 12s; }
.line:nth-child(3) { left: 25%; animation-duration: 8s; }
.line:nth-child(4) { left: 35%; animation-duration: 15s; }
.line:nth-child(5) { left: 45%; animation-duration: 9s; }
.line:nth-child(6) { left: 55%; animation-duration: 11s; }
.line:nth-child(7) { left: 65%; animation-duration: 13s; }
.line:nth-child(8) { left: 75%; animation-duration: 7s; }
.line:nth-child(9) { left: 85%; animation-duration: 14s; }
.line:nth-child(10) { left: 95%; animation-duration: 16s; }

@keyframes move-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

h1 {
    font-size: 2em;
    margin: 0;
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background-color: #333;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #333; }
}

h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-top: 0;
}

section {
    margin-bottom: 20px;
}

.project h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project h3 .icon {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: transform 0.3s ease;
}

.project h3.active .icon {
    transform: rotate(180deg);
}

.project p {
    margin: 0;
}

.edu-entry, .side-entry {
    margin-bottom: 10px;
}

#contact-content a {
    color: #333;
    text-decoration: none;
}

#contact-content a:hover {
    text-decoration: underline;
}

#projects-content {
    display: block;
}

.links {
    margin-top: 10px;
}

.links a {
    display: block;
    margin-bottom: 6px;
}

.links a:last-child {
    margin-bottom: 0;
}

