
body {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    background-color: black;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Inter", Arial, san-serif;
    color: whitesmoke
}

a {
    color: #e5e8ec;
    text-decoration: none;
    outline: none;
}

.navbar-wrapper {
    position: fixed;
    width: 100%;
    z-index: 500;
}

.hglogo {
    width: 250px;
}

.navbar {
    background: transparent;
    font-family: "Inter";
}

.layout-navbar {
    max-width: 1200px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.layout-navbar a,
.layout-navbar .nav-link.active, 
.layout-navbar a.disabled {
    color: white;
    font-size: 16px;
}

.navbar .navbar-nav .nav-item {
    position: relative;
}

.nav-item {
    margin-left: 30px;
}


.nav-link::after {
    position: absolute;
    content: '';
    height: 1px;
    left: 5%;
    bottom: 0;
    width: 0%;
    background-color: whitesmoke;
    transition: width .3s;
}

.nav-link:hover::after {
    width: 90%;
    color: whitesmoke;
}

.nav-link:hover {
    color: whitesmoke;
    text-shadow: 1px 1px 1px azure;
}


.divider {
    background-image: linear-gradient(90deg, #efeeec00, #efeeec 25% 75%, #efeeec00);
    width: 100%;
    height: 1px;
}

.opacity--25 {
    opacity: 25%;
}

section {
    display: block;
    margin: 2vw 2.5vw;
    padding-top: 15em;
}

section.full-height {
    height: 100vh;
}

.section.u--rel.z--2 {
	z-index: 2;
}

/* TERMINAL CSS */
.terminal-container {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.terminal-header {
    background-color: #333;
    color: #ccc;
    padding: 8px 15px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close {
    background-color: #ff5f56;
}

.minimize {
    background-color: #ffbd2e;
}

.expand {
    background-color: #27c93f;
}

.terminal-body {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-top: none;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    height: 400px;
    overflow-y: auto;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #33ff33;
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 1s infinite;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.terminal-body::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
}

#typing-display {
    color: #33ff33;
    font-family: 'Courier New', Courier, monospace;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
