/* Темна тема до фреймворку Berry 3.0 */
/* @import прибрати в заголовок файлу під <link> */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
	html {
	height: auto;
	min-height: 100%;
	width: 100%;
}

    body {
    background: rgb(19, 5, 42);
	color: #A1A5AA;
	font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    }

    h1, h2, h3, h4, h5, h6 {
    color: #FED294;
	opacity: 1.0;
    }

/* Оформлення коду і приміток */

    code {
    background-color: #26555A;
    white-space: pre-wrap;
    }
    
    pre {
    background-color:#2B303B;
    border-bottom:none;
    border-left:#1d6b73 solid 5px;
    border-right:none;
    border-top:none;
    color:#bbbbbb;
    }

    blockquote {
    border-left:5px solid #1F5B62;
    color:#c8e5fb;
    background-color:#063B41;
    margin:30px 0 30px 0;
    }

/* Оформлення посилань */

    a:link {
    color: #BD82F9;
    }
    a:visited {
    color: #A4AFEF;
    }
    a:hover {
    color: #FED294;
    }

/* Оформлення таблиць і бордерів */

    hr, th, td, thead {
    background-color:transparent;
    height:0;
    border:none;
    border-bottom:1px solid #ffffff;
    border-bottom:1px solid rgba(255, 255, 255, 0.08);
    }

/* Буквиця для абзацу */

.drop-cap:first-letter {
	float: left;
	font-size: 1.2em;
	font-weight: 400;
	color: #FED294;
	margin-right: .1rem;
	text-transform: uppercase;
	line-height: 1.2;
}

/* Оформлення кнопок */

.btn {
	border:1px solid #26555A;
	border-radius:5px;
}

.btn:hover {
    color: #C7C9CC;
    background-color: #3576B1;
	border: 1px solid #26555A;
}

.btn:focus {
	color: #B4C4C6;
	background-color: transparent !important;
	border-color: #B4C4C6 !important;
	box-shadow: 0 0 0 0.15rem rgba(213,160,33, 0.1) !important;
}

/* Анімація при наведенні мишкою class="hover" */

    @-webkit-keyframes hover {
    50% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
        }

    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        }
    }

    @keyframes hover {
    50% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
        }

    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        }
    }

    .hover {
    display: inline-block;
      -webkit-transition-duration: 0.5s;
      transition-duration: 0.5s;
      -webkit-transition-property: transform;
      transition-property: transform;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      box-shadow: 0 0 1px #000000;
      box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    }
    .hover:hover, .hover:focus, .hover:active {
      -webkit-transform: translateY(-6px);
      transform: translateY(-6px);
      -webkit-animation-name: hover;
      animation-name: hover;
      -webkit-animation-duration: 1.5s;
      animation-duration: 1.5s;
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s;
      -webkit-animation-timing-function: linear;
      animation-timing-function: linear;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-direction: alternate;
      animation-direction: alternate;
    }

/* Стилізація прокрутки вікна тільки для webkit */
    
.element::-webkit-scrollbar {
  width: 10px;
  background-color: #2B303B;
}

.element::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #218a8a;
}

.element::-webkit-scrollbar-track {
  background-color: #56626D;
  border-radius: 10px;
  box-shadow: inset 0 0 6px #000000;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}