/* ------------------------------------------------------------------- */
/*                        WebCBC Style Sheet                           */
/*                        By Albert Schade III                         */
/*                        Copyright 2022                               */
/* ------------------------------------------------------------------- */

/* -------------------------Globals ---------------------------------- */
/* ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,700;1,300&display=swap');

:root {
    /*--primary-color: #8dabcd;*/
    --secondary-color: #27236d;
    --highlight-color: #ffd60c;
    --primary-color: #7b95b3;
}
body {
   font: 15px/1.5 'Lato', sans-serif;
   padding: 0;
   margin: 0;
   color: #333;
   line-height: 1.6;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
ul{
    margin: 0;
    padding: 0;
}
/* ---------------------  Header ------------------------------------ */
/* ------------------------------------------------------------------ */
header{
    background: var(--primary-color);
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: var(--secondary-color) 5px solid;
}
header a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header li{
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}
header #branding{
    float: left;
}
header #branding h1{
    margin: 0;
}
header nav{
    float: right;
    margin-top: 10px;
}
header .highlight, header .current a{
    color: var(--highlight-color);
    font-weight: bold;
}
header .italisize{
    color: var(--highlight-color);
    font-style: italic;
}
header a:hover{
    color: var(--highlight-color);
    font-weight: bold;
}
/* ---------------------- Showcase -------------------------- */
/* ---------------------------------------------------------- */
#showcase {
    min-height: 300px;
    background: url(../img/CodesSplash.jpg) no-repeat center;
    border-top:var(--highlight-color) 5px solid ;
    background-color: black;
}
.login-wrapper {
    height: 50vh;
    width: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 /* ----------------------- Footer --------------------------- */
/* ---------------------------------------------------------- */
footer{
    padding: 20px;
    border-top: var(--highlight-color) 5px solid;
    color:#fff;
    background-color: #333;
    text-align: center;
    font-style: initial;
    font-weight: bold;
  }

/* ----------------------- Sizing --------------------------- */
/* ---------------------------------------------------------- */
@media(max-width:768px){
    header #branding, header nav, header nav li{
        float: none;
        text-align: center;
        width: 100%;
    }
    header{
        padding-bottom: 20px;
    }
}