* {
    margin: 0px;
}

/*Set Background Color*/
body {
    background-color: #FACDE5;
}

html {
    background-color: #FACDE5;
}

/*Header*/
#header-image {
    width: 50%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

/*Style Header on Mobile*/
@media screen and (max-width: 1000px) {
    #header-image{
        width: 95%;
    }
}

/*Highcharts Visualizations*/
.chart {
    width: 65%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-bottom: 50px;
    border: 4px solid #E0218A;
    border-radius: 10px;
    box-shadow: 10px 10px 10px #ED5C9B;
    background-color: #FFFFFF;
    padding: 20px;
}

/*Style Hair Color Bar Chart*/
#hairColor {
    min-height: 850px;
}

/*Set Font for Highcharts Visualizations*/
.highcharts-root {
    font-family: 'Karla', sans-serif !important;
    font-size: 16px !important;
}