
/* Скролл */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00CED1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #20B2AA;
}

body{
    display: flex;
    flex-direction: column;
    margin: 0;
}

.centr{
    text-align: center !important;
}

.flex{
    display: flex;
}

.left-flex{
    display: flex;
    align-items: center;
    gap: 2%;
    flex: 1;
}

.right-flex{
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    flex: 1;
}

/* Навигация */
.shapka {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    border-radius: 2px;
    background: #00CED1;
    z-index: 1000;
}

.shapka-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.shapka-link {
    color: white;
    text-decoration: none;
    font-weight: 20%;
    padding: 10px 15px;
    border-radius: 6px;
}

.shapka-link:hover {
    background: #FFD700;
    color: #333;
}

/*Подвал*/
footer{
    display: flex;
    flex: 0 0 auto;
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #00CED1;
}

.end{
    position: absolute;
    bottom: 0; left: 50%; transform: translate(-50%);
}