/*CSS Variables for reused colors*/
:root {
    --bkgdColor: #26a69a;
    --errorColor: red;
    
}
body {
    min-width: 300px;
    background-color: rgb(240, 240, 240);
    font-family: Arial, Helvetica, sans-serif;
}
.container {
    background-color: white;
}
.nameText {
    font-size: 250%;
    font-weight: bold;
    margin-bottom: 1%;
}
/*sets styling for error message*/
.error {
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 150%;
    color: var(--errorColor);
    font-weight: bold;
}
/*Sets styling for text for the returned information*/
.infoText {
    color: white;
    font-size: 175%;
    font-weight: 500;
    margin-left: 2.5%;
    margin-right: 2,5%;
}
.errorIcon {
    color: var(--errorColor);
}
#descBkgd {
    background-color: var(--bkgdColor);
}
#submitButton{
    margin-bottom: 0;
}
#title {
    font-weight: bold;
    width: 100%;
}
#descText {
    color: white;
    padding: 1.5%;
    font-weight: 600;
    background-color: var(--bkgdColor);
}
#forms {
    margin-left: 4%;
}
#submitButton {
    margin-right: 5%;
}
#resultsContainer {
    background-color: var(--bkgdColor);
    color: white;
}
#countyList {
    background-color: var(--bkgdColor);
}
#topButton {
    margin-top: 0;
}