

/*  KINGFISHER "HALCYON" BIRD COLOR PALETTE

#2D5958 DARK TEAL
#13417C DARK BLUE
#0EA5C3 LIGHT BLUE
#D9AE17 GOLD
#FB9543 LIGHT ORANGE

*/


html {
    height: 100%;
    color: #D9AE17;
}

body {
    background-color:#2f4e4e;
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.content {
    height: 100%;
    width: 100%;
}

.navBar {
    height: 100%;
    width: 25%;
    max-width: 150px;
    background-color: antiquewhite;
    box-shadow: 0 0 10px black;
    z-index: 1;
} 

.heroDiv {
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.014), rgba(0, 0, 0, 0.25));
    box-shadow: 0 -5px 10px 5px black;
    text-align: center;
}

h1 {
    margin: 0;
    padding: 10px 0 8px 0;
    text-shadow: 0 0 2px black;
}

h2 {
    margin: 10px 0 0 0;
    text-decoration: underline;
    
}

h3 {
    margin: 10px 0 0 0;
    font-weight: 600;
}

.birthdays {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.014), rgba(0, 0, 0, 0.1));
    box-shadow: 0 0 10px -5px black;
    background-color: #13417C;
    border-radius: 5px;
    margin: 10px auto;
    max-width: 600px;
}

.birthdays p {
    text-align: center;
    padding: 15px;
}


ol {
    list-style: none;
    columns: 150px 2;
}

ul {
    padding: 2px 0 8px 25px;
    list-style: none;
    list-style-position: inside;
}

li {
    padding-left: 15px;
}


a {
    padding: 0 10px;
    background-color:rgba(0, 174, 255, 0.137);
    border-radius: 15px;
    width: 70px;
    display: block;
    color: inherit;
    text-decoration: inherit;
    box-shadow: 3px 3px 10px -5px black;
}

a:hover {
    box-shadow: inset 3px 3px 10px -5px black;
}

a:active {
    scale: 90%;
}


.disabled {
    color: rgba(0, 0, 0, 0.35);
    text-decoration: none;
}


/* 
footer {
    position: fixed;
    bottom: 0;
    height: 25%;
    max-height: 100px;
    width: 100%;
    background-color: antiquewhite;
} */







/* PHONE SCALING 

@media only screen and (max-width: 1000px) {
    
    body {
        padding-bottom: 400px;
    }

    ol {
        padding: 0;
        columns: 1;
        text-align: center;
    }

    .birthdays {
        max-width: 80%;
    }

    ul {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    a {
        width: inherit;
        margin: 16px;
    }
  }

  */