body {
    /* changed colors and fonts */
    background-color: #f2f5f8;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 20px;
    color: #222222;
}

.header {
    /*  adjugsted header styling */
    text-align: center;
    color: #102A43;
    font-size: 2.5em;
    margin-bottom: 30px;
}

#tabs {
    /* width and centered the tabs  */
    width: 900px;
    margin: 0 auto;

    /* added border and background */
    border: 3px solid #102A43;
    background-color: #ffffff;
    padding: 0;
    box-shadow: 5px 5px 12px #999999;
}

/* changed the  background color for tabs */
.ui-tabs .ui-tabs-nav {
    background: #102A43 !important;
    border: none !important;
    padding: 8px 8px 0 8px !important;
}

/* made each tab background colored so tabs are not white */
.ui-tabs .ui-tabs-nav li {
    background: #102A43 !important;
    border: 2px solid #ffffff !important;
    margin-right: 6px !important;
}

/* changed tab text  for colors, sizes, and  weights */
.ui-tabs .ui-tabs-nav li a {
    color: #ffffff !important;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 18px !important;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    background: #661D00 !important;
    border: 2px solid #661D00 !important;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
    color: #ffffff !important;
}

/*  effects for tabs */
.ui-tabs .ui-tabs-nav li:hover {
    background: #78919B !important;
    border: 2px solid #78919B !important;
}

.ui-tabs .ui-tabs-nav li:hover a {
    color: #ffffff !important;
}

.ui-tabs .ui-tabs-panel {
    padding: 25px;
    min-height: 300px;
    font-size: 1.05em;
    line-height: 1.5;
}

h2 {
    color: #102A43;
    border-bottom: 2px solid #661D00;
    padding-bottom: 6px;
}

p,
li {
    font-size: 1.05em;
}

a {
    color: #102A43;
}

a:hover {
    color: #661D00;
}

.social {
    margin-top: 20px;
}

.social a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: #102A43;
}

.social img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.social a:hover {
    color: #661D00;
}