/* CSS for Police Report */

html, body {
    margin: 0;
    padding: 0;
}

header {
    background-color: black;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

header h1 {
    color: white;
    margin: 1em;
    font-family: Roboto, sans-serif;
    font-style: italic;
}

nav ul li {
    margin-top: 1.75em;
    display: inline-block;
    list-style: none;
    padding-right: 2em;
    text-align: center;
    font-family: Roboto, sans-serif;
}

nav a {
    text-decoration: none;
    color: white;
}

nav a:hover {
    text-decoration: underline;
    
}

.police-report-image-div {
    display: flex;
    justify-content: center;
}

h2 {
    text-align: center;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

.divider {
    text-align: center;
}

.report-container {
    width: 1000px;
    margin: 0 auto;
}

.identity-section {
    border: 3px solid black;
    width: 1000px;
    margin: 2em auto;
}

.section-title {
    font-size: 30px;
    color: black;
    padding: 0.25em;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 22em;
    width: 350px;
}

.submit-button {
    margin: 2em 2em 2em 26.5em;
    color: white;
    background-color: rgb(0, 115, 255);
    border: 3px solid white;
    outline: 3px solid black;
}

.submit-button:hover {
    cursor: pointer;
}