@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Mono", monospace;

}

h1 {
    font-size: 32px;

    font-weight: 550;
    background-color: white;

}

h2 {
    font-size: 16px;
    font-weight: 450;
    background-color: white;


}

header {
    padding: 35px 50px;
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #000;
}

.logo {
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #000000;


}

.nav-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    margin-left: 25px;
    color: black;
}
.nav-link:hover{
    text-decoration: underline;
}

hr {
    width: 100vw;
    height: 3.5px;
    background-color: black;
}

main {
    background-image: radial-gradient(#000 1px, transparent 0);
    background-size: 30px 30px;
    background-position: -19px -19px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

}

.heading {
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.console {
    border: 1px solid #3a3f4b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 60vw;
    height: 65vh;
    margin: 40px auto;
}

.console-screen {
    margin: 0px 20px auto;
    background-color: #121212;
    color: white;
    font-family: monospace;
    text-align: left;
    padding: 10px;
    font-size: 16px;
    overflow-y: scroll;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    height: 100%;
    flex: 1;
    border-radius: 0px 0px 8px 8px;

}




.console-screen::-webkit-scrollbar {
    display: none;
}

.console-line {
    display: flex;
    align-items: start;
    width: 100%;
    margin-bottom: 10px;
}

.path {
    margin-right: 6px;
}


.prompt {
    flex: 1;
    min-width: 0;
    white-space: pre-wrap;
    word-break: break-word;
    outline: none;
}


.console-top {
    width: 100%;
    height: 20px;
    font-size: 8px;
    background-color: #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    color: #e6e6e6;
    border-radius: 8px 8px 0px 0px;

}


.console-top-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;

}

.console-top-button {
    height: 20px;
    width: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;


}

.close {
    background-color: #ff5f56;
    border-radius: 0px 8px 0px 0px;
}

.minimize {
    background-color: #ffbd2e;
}

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

.close:hover {
    background-color: #ff3b30;
}

.minimize:hover {
    background-color: #ffb000;
}

.maximize:hover {
    background-color: #1db954;
}

.color-red{
    color: red !important;
}

.text-light{
    color: #ccc;
}