﻿/* Style sheet for mobile sites */
/* rem is root emperial measurement using percentage
    from initial font size
*/
body {
    background-color: LightGray;
    margin: 5px;
    padding: 0;
    font-family: Calibri;
	font-size: 80%;
}
html {
	font-family: Calibri;
	font-size: 80%;
}	
	
p {
    font-family: Calibri;
    color: black;
    font-size: 1.6rem;
}
a {
    font-family: Calibri;
    color: black;
    font-size: 1.6rem;
}

h1 {
    font-family: Calibri;
    color: blue;
    font-size: 1.6rem;
}

h2 {
    font-family: Calibri;
    color: navy;
    font-size: 1.5rem;
}
h3{
    font-family: Calibri;
    color: black;
    font-size:1.5rem;
}
h4 {
    font-family: Calibri;
    color: darkblue;
    font-size: 1.5rem;
}
/* used for ADA skip link*/
.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip:focus {
        position: static;
        width: auto;
        height: auto;
}
/* settings for new ADA menu*/

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: blue;
    color: white;
    font-size: 1.8rem;
    position: relative;
}
    /* Hide the links inside the navigation menu (except for logo/home) */
    .topnav #myLinks {
        display: none;
        background-color: black;
    }

    /* Style navigation menu links */
    .topnav a {
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 16px;
        display: block;
        background-color: black;
    }

        /* Style the hamburger menu */
        .topnav a.icon {
            background: blue;
            display: block;
            position: absolute;
            right: 5px;
            top: 5px;
        }

        /* Add a grey background color on mouse-over */
        .topnav a:hover {
            background-color: darkblue;
            color: white;
        }

/* Style the active link (or home/logo) */
.active {
    background-color: black;
    color: white;
}
/* Style the navigation menu */
.navbar2 {
    width: 100%;
    background-color: #0505fe;
    overflow: auto;
}

    /* Navigation links */
    .navbar2 a {
        float: left;
        color: white;
        text-decoration: none;
        font-size: 1.6rem;
        padding: 12px;
        width: 25%; /* Seven equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
        text-align: center; /* If you want the text to be centered */
    }

        /* Add a background color on mouse-over */
        .navbar2 a:hover {
            background-color: #000;
        }

        /* Style the current/active link */
        .navbar2 a.active {
            background-color: #4CAF50;
        }

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 800px) {
    .navbar2 a {
        float: none;
        display: block;
        width: 100%;
        text-align: left; /* If you want the text to be left-aligned on small screens */
    }
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: blue;
}

li {
    float: left;
}

    li a, .dropbtn {
        display: inline-block;
        color: white;
        background-color: blue;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        li a:hover, .dropdown:hover .dropbtn {
            background-color: black;
        }

    li.dropdown {
        display: inline-block;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        background-color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            color: white;
            background-color: blue;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

#icon-nav {
    float: left;
    width: 100px;
    padding: 5px;
}

#icon-nav div { 
    position: relative;
    text-align: center;
}
/* screen icon settings */
.page-icons{
	position: static;
	color: blue;
	font-size: 2.5rem;
	text-align: center;
	width: 100%;
	text-decoration: none;
}


.icon-text {
    position: absolute;
    top: 75%;
    left: 45%;
    transform: translate(-75%, -45%);
}