:root {
    --background-color1: #2d3445;
    --background-color-dark: #151921;
    --color-val2 : #1a8897;
    --color-val3 : #719a66;
    --color-all2 : #b2751e;
    --color-all3 : #97401f;
    --border-color: #808080;
}

html{
    font-family:  Helvetica, sans-serif;
    height: 100%;
    overflow-y: auto;
    position: relative;
}

.form-control:focus {
    box-shadow: none;
}
.form-group{
    margin-bottom: 0.5em;
}

.fuu a{
    color: var(--color-val2);
}

.fuu a:hover{
    color: var(--color-val3);
}

body{
    background: rgb(216,247,224);
    background: linear-gradient(215deg, var(--background-color-dark) 0%, var(--background-color1) 100%);
    background-attachment:  fixed;
    padding-top: 40px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:gray !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: gray !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: gray !important;
}

footer {
    position: sticky;
    left: 0;
    bottom: 0;
    width:100%;
    height: 0px;
}

h3{
    font-size: 22px;
    color: var(--color-val3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

h1{
    font-size: 24px;
    color: var(--color-val2)
}

h2{
    font-size: 12px;
    color: var(--color-val2)
}

p{
    color: #eee;
}

label{
    color:white;
}

.form-control{

    border-radius: 8px;
    border-color: var(--border-color) !important;

    outline: none;
    font-size: 14px;
    color: black !important;
    background-color: lightgray !important;
    resize: none;
    border-radius: 5px;
}

.form-control:focus{
    border-color:white;
}

textarea:focus{
    border-color:white;
}

.btn-small{
    font-weight: bold;
    font-size: 12px;
    padding: 4px;
}


.navbar-custom {
    background-color: var(--background-color-dark);
    border-bottom: #333 1px solid;
    box-shadow: 1px 1px 15px rgba(0,0,0, 0.825);
    color : black;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: black;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}


.btn{
    box-shadow: none;
    padding: 10px;
    text-transform:  capitalize;
    position: relative;
    border-radius: 1vmin;
    background: black;
    color: white;
    margin: 2px;
}
.btn:after{
    content: '';
    position: absolute;
    border-radius: 0.5vmin 0.5vmin 0vmin 0vmin;
    top: 0.25vmin;
    left: 0.25vmin;
    width: calc(100% - 0.5vmin);
    height: 50%;
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.2));
}
.btn:hover{
    background: #00000033;
    border-radius: 1vmin;
    color: white;
}

.btn-right{
    padding: 0px;
    margin: 0px;
    min-width: 30px;
}