* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1E1E1E;
    font-family: Consolas, 'Courier New', monospace;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    height: 6vh;
    background-color: #333333;
}

.header-heading h4 {
    color: white;
    text-align: center;
    margin: auto;
    padding: 1vh 0vh 0vh 0vh;
}

.webpage-content {
    width: 100%;
    display: flex;
}

.first-left-sidebar {
    background-color: #2e2d2d;
    width: 5vw;
    height: 87vh;
}

.left-sidebar-items {
    list-style-type: none;
    padding: 10px;
}

.left-sidebar-items img {
    width: 3vw;
    height: 7vh;
}

.second-left-sidebar {
    width: 15vw;
    background-color: #222223;
    height: 87vh;
}

.subheading-1 {
    color: #ffffffb3;
    margin: 0 1vw;
    padding: 0.5vw 0.1vw;
}

.subheading-2 {
    color: #ffffffb3;
    margin: 3vh 0 0 0;
    padding: 0.5vw 0.1vw;
}

.subheading-2 h4 img {
    width: 1vw;
    height: 2vh;
}

.left-sidebar-2-items {
    list-style-type: none;
    padding: 10px;
    display: flex;
}

.left-sidebar-2-items button {
    background-color: #222223;
    color: #ffffffb3;
    border: none;
    cursor: pointer;
}

.left-sidebar-2-items img {
    width: 2vw;
    height: 3vh;
}

.opened-section {
    width: 100%;
    height: 8vh;
}

.opened-section ul {
    display: flex;
}

.opened-section ul li {
    margin: 0vh 2vh;
}

.opened-section ul li button:active {
    border-top: 1px solid yellow;
}

.home-section {
    width: 100%;
}

.home-section-content {
    height: fit-content;
}

.home-section-background {
    font-size: 5rem;
    font-family: Montserrat;
    line-height: 1.1;
    color: #2c34424a;
    position: absolute;
    z-index: 1;
    margin-left: 1vw;
    margin-top: 6vh;
}

#down-arrow {
    border: none;
    background-color: #222223;
    cursor: pointer;
}

.name-heading {
    color: #eee;
    font-size: 2.5rem;
    font-weight: 500;
    z-index: 2;
    position: absolute;
    margin-top: 12vh;
    margin-left: 2vw;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: .10em solid orange;
    white-space: nowrap;
    margin: 0;
    letter-spacing: .15em;
    animation: typing 3s steps(14, end), blink .75s step-end infinite;
    font-size: 2.5rem;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: orange;
    }
}

.cursor {
    display: inline-block;
    background-color: orange;
}

.about-section {
    color: white;
    height: 79vh;
    overflow-y: scroll;
    width: 100%;
}

.me {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    width: 80vw;
}

.class-name {
    color: orange;
}

.tag {
    color: violet;
}

.projects {
    color: white;
    font-family: JetBrains Mono, monospace;
    height: 75vh;
}

.projects h2 {
    font-size: 1.17rem;
    margin-left: 3vw;
}

.project-container {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    height: 75vh;
    overflow-y: scroll;
}

.project-card {
    width: 30vw;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-left: 3vw;
    margin-top: 2vh;
    margin-bottom: 2vh;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 30vh;
    border-radius: 5px;
    margin-bottom: 10px;
}

.project-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.project-card ul {
    margin-bottom: 10px;
}

.project-card ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    border: 1px solid #007bff;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 2vh;
}

.project-card ul li:last-child {
    margin-right: 0;
}

.project-card ul li:nth-child(1) {
    border-color: #FF5733;
}

.project-card ul li:nth-child(2) {
    border-color: #33FF57;
}

.project-card ul li:nth-child(3) {
    border-color: #5733FF;
}

.project-card ul li:nth-child(4) {
    border-color: #FFD700;
}

.project-card ul li:nth-child(5) {
    border-color: #7FFFD4;
}

.project-card button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.project-card button:hover {
    background-color: #0056b3;
}

.project-card p {
    font-family: 'Courier New', Courier, monospace;
}

.vscode {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    border-radius: 5px;
}

.keyword {
    color: #569cd6;
}

.function {
    color: #4ec9b0;
}

.comment {
    color: #6a9955;
}

.variable {
    color: #9cdcfe;
}

.string {
    color: #ce9178;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#home-section {
    display: block;
}

#about-section,
#projects-section,
#social-links-section,
#contact-section {
    display: none;
}

.footer {
    background-color: #007ACC;
    height: 6vh;
    position: relative;
    width: 100%;
}

.footer-content {
    font-size: 14px;
    display: flex;
}

.left-footer {
    width: 50%;
    display: flex;
    padding: 1vh;
    margin-left: 1vw;
    justify-content: flex-start;
}

.right-footer {
    width: 50%;
    display: flex;
    padding: 1vh;
    margin-right: 1vw;
    justify-content: flex-end;
}

.contact-section-content {
    margin: auto;
    height: 77vh;
    width: 78vw;
    overflow-y: scroll;
}

.contact-form {
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cpp-code {
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: "Courier New", Courier, monospace;
    border-radius: 5px;
    overflow-x: auto;
}

.cpp-code pre {
    margin: 0;
}

.cpp-code pre span.comment {
    color: #6a9955;
}

.cpp-code pre span.keyword {
    color: #569cd6;
}

.cpp-code pre span.string {
    color: #ce9178;
}

.cpp-code pre span.function {
    color: #dcdcaa;
}

.cpp-code pre span.variable {
    color: #9cdcfe;
}

.cpp-code pre span.class-name {
    color: #4ec9b0;
}

.cpp-code pre span.tag {
    color: #b5cea8;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 50%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form input[type="submit"] {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 12px 20px;
    margin-left: 2vw;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #45a049;
}