/*
Variables
*/
:root {
    --bg_bright_01: rgba(250,252,255);
    
    --bg_dark_01: rgba(14,16,18);
    
    --txt_bright_01: rgba(255,255,255);
    
    --txt_dark_01: rgba(33,33,44,1);
    --txt_dark_02: rgba(99,99,132,1);
    
    --trans_025: all 0.25s ease;
}
/*
Variables ///
*/
/*
Fonts
*/
@font-face {
  font-family: 'Porter';
  src:  url('../fonts/f_Porter.ttf');
}
@font-face {
    
  font-family: 'Atkinson';
  src:  url('../fonts/f_Atkinson.otf');
}
/*
Fonts ///
*/
/*
General
*/
html{
    height: auto;
    min-height: 100%;
    margin: 0px;
    padding: 0px;
}
body{
    height: calc(100%);
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    background: var(--bg_bright_01);
    overflow-x: hidden;
}
/*
General ///
*/
/*
Text
*/
p, a{
    font-family: Atkinson;
    font-weight: normal;
    color: palevioletred;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--trans_025);
}
h1, h2, h3,h4{
    font-family: Atkinson;
    font-weight: normal;
    color: palevioletred;
    text-decoration: none;
    letter-spacing: 0px;
    transition: var(--trans_025);
}
h1{
    font-size: 100.5px;
}
h2{
    font-size: 50.5px;
}
h3{
    font-size: 40.5px;
}
h4{
    font-size: 30.5px;
}
p.big, a.big{
    font-size: 18.5px;
}
p.normal, a.normal{
    font-size: 14.5px;
}
p.small, a.small{
    font-size: 12.5px;
}
p#txt_bright_01, a#txt_bright_01, h1#txt_bright_01, h2#txt_bright_01, h3#txt_bright_01, h4#txt_bright_01{
    color: var(--txt_bright_01);
}
p#txt_dark_01, a#txt_dark_01, h1#txt_dark_01, h2#txt_dark_01, h3#txt_dark_01, h4#txt_dark_01{
    color: var(--txt_dark_01);
}
p#txt_dark_02, a#txt_dark_02, h1#txt_dark_02, h2#txt_dark_02, h3#txt_dark_02, h4#txt_dark_02{
    color: var(--txt_dark_02);
}
/*
Text ///
*/
/*
Components
*/
.hidden{
    display: none;
}
.padding_h_20prc{
    padding: 0px 20% 0px 20%;
}
#l{
    text-align: left;
}
#c{
    text-align: center;
}
#r{
    text-align: right;
}
#j{
    text-align: justify;
}
ul li{
    display: inline-block;
    text-decoration: none;
}
button{
    margin: 0px;
    padding: 0px;
    color: blue;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
logo{
    width: 30px;
    height: 30px;
    position: relative;
    display: block;
    background: url(../img/log.enavsymbol-256.png) no-repeat;
    background-size: contain;
}
/*
Components ///
*/
/*
CON
*/
con{
    display: flex;
    flex: 1;
    flex-shrink: 0px;
    flex-direction: column;
    z-index: 1;
}
con .concon{
    flex: 1;
    background: transparent;
}
.zz{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex: 1;
}
.zz p{
    font-family: Atkinson;
    font-weight: bold;
    color: var(--txt_dark_01);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--trans_025);
}
/*
/*
Scrollbar
*/
::-webkit-scrollbar{
    width: 14.5px;
}
::-webkit-scrollbar-track{
    background-color: transparent;
}
::-webkit-scrollbar-thumb{
    background-color: rgba(198,198,200);
    border-radius: 2.5px;
}
::-webkit-scrollbar-thumb:hover{
    background-color: rgba(99,99,111);
}
::-webkit-scrollbar-button:hover{
    background-color: black;
}
/*
Scrollbar ///
*/