/*styles*/
body {
    display: block;
    margin: 0px;
    background-color:whitesmoke;
}

.header_div {
    width: 60%;
    margin-left:auto;
    margin-right:auto;
    display: flex;
    flex-direction: row;
    padding:30px;
    color:grey;
    background-color:whitesmoke;
    border-radius:5px;
    align-items: center;
    justify-content: center;
    align-content: space-around;
    text-align:center;

}
.headerpics {width:192px;height:192px;}

.header_div > div {
    padding:0px 10px;
  }
.navRow {
    width: 100%;
    margin-left:auto;
    margin-right:auto;
    display: flex;
    flex-direction: row;
    padding:5px;
    color:grey;
    background-color:whitesmoke;
    border-bottom:2px solid blue;
    align-items: center;
    justify-content: center;
    text-align:center;
}


.flexRow {
    width: 60%;
    margin-left:auto;
    margin-right:auto;
    display: flex;
    flex-direction: row;
    padding:30px;
    color:grey;
    background-color:whitesmoke;
    border-radius:5px;
    align-items: center;
    justify-content: center;
    align-content: space-around;
    text-align:center;
}
.screener_div {
    width: 60%;
    margin-left:auto;
    margin-right:auto;
    display: flex;
    flex-direction: column;
    padding:30px;
    color:grey;
    background-color:whitesmoke;
    border-radius:5px;
    align-items: center;
    justify-content: center;
    text-align:center;

}

li {
    width:50%;
    min-width: 300px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
}

.red {color:red;}

.green {color:green;}

.bold {font-weight: bold;}

.left {text-align:left;}

.skinny {
    width: 50%;
    min-width: 300px;
    margin-left:auto;
    margin-right:auto;

}

.bigName {font-size: 24px;}


.custom-select {
    margin-left:auto;
    margin-right:auto;
}

.custom-select select, .blueButton {
    padding: 10px;
    background-color: blue;
    color:white;
}

.blueButton {
    padding: 10px;
    background-color: blue;
    color:white;
    margin:5px 20px;
    border:2px solid blue;
    border-radius:5px;
    text-decoration: none;
    transition: ease-in-out .2s;
}
.blueButton:hover {
    background-color: rgb(173, 173, 173);
    color:blue;
}