.nav {
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    margin-left: auto;
}

.nav a {
    font-size: 20px;
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 10px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 5px 5px 10px #e6e6e6,
        -5px -5px 10px #ffffff;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, transform 0.3s ease-in-out;
}

.nav a:hover {
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 5px 5px 10px #dedede,
        -5px -5px 10px #ffffff;
    transform: scale(1.1);
}

.nav a:active {
    border-radius: 10px;
    background: #ffffff;
    box-shadow: inset 6px 6px 12px #d1d1d1,
        inset -6px -6px 12px #ffffff;
    transform: scale(0.95);
    /* Легкое сжатие кнопки */
}

.logo-container {
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo {
    width: 100px;
    /* Размер контейнера для логотипа */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Тень для эффекта */
    border-radius: 20px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 5px 5px 10px #d9d9d9,
        -5px -5px 10px #ffffff;
}

header {
    display: flex;
    justify-content: flex-end;
    /* Выравниваем элементы по правому краю */
    align-items: center;
    margin: 30px;
}



.clickable-div {
    cursor: pointer;
    /* Добавляем указатель мыши, чтобы показать, что элемент кликабельный */
}



/* index */
.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
    background-color: #ffffff;
}

.intro-text {
    max-width: 50%;
}

.intro-text h1 {
    font-size: 60px;
    color: #333;
    margin: 0;

}

.intro-image img {
    max-width: 90%;
    height: auto;

}

.introtextfont {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bolder;
}

.neumorphic_button {
    border-radius: 50px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 5px 5px 10px #e6e6e6,
        -5px -5px 10px #ffffff;
}

.textfont {
    font-family: "Roboto Condensed", sans-serif;

}

.terminal {
    margin: 30px;
    background-color: black;
    border-radius: 20px;
    height: 300px;
    overflow: hidden;
    color: #cfcfcf;
    display: flex;
    flex-direction: column;
}

.window-header {
    background-color: #333;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.red {
    background-color: #ff0f03;
}

.yellow {
    background-color: #ffae00;
}

.green {
    background-color: #05ca23;
}

.terminal-content {
    padding: 15px;
    background-color: #1e1e1e;
    flex-grow: 1;
    overflow-y: auto;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: greenyellow;
    font-size: 20px;
}



