/* Стили для базового шаблона всех страниц - templates/base.html */


/* Тело страницы */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    display: block;
    box-sizing: border-box;
    height: 100vh;
    min-width: 400px;
    min-height: 500px;
    margin: 0px;
    padding: 0px;
    overflow: auto;
    background-color: #234250;
}


/* Стиль ссылок */
a {
    text-decoration: none;
    color: white;
}


/* Стили для отображения частиц на фоне */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

#particles-js {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}


/* Стили хэдера */
header {
    display: flex;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 75px;
    padding: 17px 50px;
    justify-content: space-between;
    align-content: center;
    border: none;
    background-color: transparent;
}

.home {
    display: flex;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: white;
    text-decoration: none;
}

.personal-cabinet-and-logout-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.entry-btn {
    margin: 0.4em 0px;
    padding: 0.4em 2.2em;
    border: 1px solid white;
    border-radius: 20px;
    background-color: transparent;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.entry-btn:hover {
    color: black;
    background-color: rgba(255, 255, 255, 1);
}

.entry-btn:active {
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
}


.vert-line {
    margin: auto;
    padding: 0px 5px 7px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300; 
    font-size: 30px; 
    color: white; 
}


/* Блок основного контента на странице */
.main-content {
    display: flex;
    flex: 1;    
    box-sizing: border-box;
    position: relative;
    justify-content: center;
    height: calc(100% - 160px);
    min-height: 675px;
    width: 100%;
    overflow: auto;
    background-color: transparent;
}


/* Стили футера */
footer {
    display: flex;
    box-sizing: border-box;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 85px;
    padding: 20px 50px 20px;
    justify-content: space-between;
    background-color: transparent;
}

.footer-left {
    -webkit-font-smoothing: antialiased;
    margin-right: 10px;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 100;
    font-size: 12px;
    line-height: 1.0;
}

.footer-right {
    -webkit-font-smoothing: antialiased;
    margin-left: 10px;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 100;
    font-size: 12px;
    line-height: 1.0;
}