:root {
    background-color:rgb(24, 24, 120);
    color: white;
}

header {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size:80px;
    text-align: center;
    padding: 10px;
    color: red;
}

h2 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:rgb(146, 146, 183);
}

aside {
    float: left;
    height: 300px;
    width: 340px;
    text-align: center;
    margin-right: 20px;
}

.site {
    color: yellow;
} 

.site:hover {
    color: red;
}

section {
    color: white;
    padding: 5px;
}

.imgrow {
    display: flex;
}

.imgcolumn {
    max-width: 50%vw;
    width: 100%;
    padding-top: 15px;
    max-height: 50vh;
    height:auto;
    margin-right: 10px;
}

.section-container {
    text-align: center;
}

#city-region {
    display: block;
    height: 100px;
}

#foxtail {
    height: 300px;
    width: 100%;
    border-radius: 30px;
}

#flag {
    height: 300px;
    width: 100%;
    border-radius: 30px;
}

#todo {
    height: 150px;
}

.article-container{
    text-align: center;
}

#crime {

    height: auto;
}

#income {
    height:auto;
}

ul {
    list-style-position:inside;
    list-style-type:square;
}

#nurse {
    float: left;
    height: 230px;
    width: auto;
    margin-top: 25px;
    border-radius: 40px;
    border: 5px solid red;
}

.info-container {
    display: flex;
    gap: 5px;
    align-items: center;
    text-align: center;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    margin: 5px;
    gap: 5px;
}

.nav-item {
    position: relative;
    width: 20%;
    overflow: hidden;
}

.nav-item img {
    width: 100%;
    height: 100px;
    border-radius: 25px;
}

.overhead-txt {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bolder;
    
}

.overhead-txt:hover {
    background-color: red;
    font-size: larger;
    color: blue;
    border-radius: 25px;
}
footer {
    text-align: center;
    padding: 1px;
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

footer a {
    color: gold;
}

footer a:hover {
    color: red;
}

