html {
    background-color: rgb(255, 255, 255);
}

title {
    color: navy;
    font-size: large;
    font-family: Arial, sans-serif;
}

h1 {
    color: rgb(15, 6, 80);
    font-size: xx-large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-left: 30px;
    padding-top: 20px;
    text-align: center;
}

h2 {
    color: rgb(15, 6, 80);
    font-size: large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-left: 30px;
    padding-top: 10px;
    text-align: center;
}

h3 {
    color: rgb(128, 0, 13);
    font-size: small;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

p {
    color: black;
    font-size: small;
    font-family: 'Courier New', Courier, monospace;
}

.Logo {
    position: absolute; 
    top: 10px; 
    left: 10px;
    width: 675px; height: 140px;
}

* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0; 
    padding: 0;
}

button {
    border: none;
    cursor: pointer;
    appearance: none;
    background-color: inherit;
}

.hero-section {
    background-image: url("GlosPoliceBG.jpg");
    background-size: cover;
    background-position: center top;
    height: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: opacity 0.8s ease-in-out;
}

.nav-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.box {
    background-color: #153674;
    color: white;
    font-size: large;
    font-family: sans-serif;
    padding: 30px 30px;
    width: 200px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.box:hover {
    background-color: #00205b;
}

.href {
    color: white;
    text-decoration: none;
}