body {
    margin-left: 0;
    margin-right: 0;
}

#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px;
    height: 102px;
}
hr {
    margin-top: 0;
    margin-bottom: 0;
    height: 3px; 
    background-color: #3A9EFF;
}

#title {
    font-family: 'Henny Penny', sans-serif;
    font-size: 356%;
    color: dodgerblue;
    text-decoration: none;
    width: 869px;

    font-weight: bold;

}

#headerButtons {
    width: 546px;
    display: flex;
    justify-content: right;
    align-items: center;
}

#user {
    font-weight: bold;
    color: dodgerblue;
    padding-right: 12px;
    font-size: 20px;
    padding-left: 0;
    margin: 0;
}

.button {
    padding: 12px 20px 12px 20px;
    font-size: 19px;
    color: dodgerblue;
    background-color: #ffffff;
    border-color: dodgerblue;
    border-radius: 12px;
    margin-right: 9px;
}
.button:hover {
    background-color: #EEEEEE;
}

#signinButton {
    color: white;
    background-color: #1e90ff;
    border-color: dodgerblue;
    font-weight: bold;
    display: block;
}

#signinButton:hover {
    background-color: #0684ff;
}

#signoutButton {
    color: white;
    background-color: red;
    border-color: red;
    font-weight: bold;
    display: none;
}

#signoutButton:hover {
    background-color: #ff2c2c;
}

#content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: antiquewhite;
    padding-top: 15px;
    min-height: 100vh
}

.subtitle {
    color: #0684FF;
    font-size: 250%;
    margin-top: 5px;
}

.newsThumbnail {
    width: 200px;
    height: 200px;
    border-radius: 20px;
}

#topThumbnail{
    width: 300px;
    height: 300px;
}

#topStory h1, p {
    padding-left: 37px;
    margin-top: 0;
}

.story {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    border-top: solid 1px #d5d5d5;
}

.story:hover{
    background-color: #EEEEEE;
}

.story h3 {
    width: 417px;
    font-size: 22px;
    padding-left: 32px;
    margin-top: 0;
}

.story p {
    color: #b9b9b9;
    margin: 0;
    padding-left: 32px;
}


#news {
    width: 775px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background-color: white;
    border: solid #adadad;
    border-radius: 12px;
    padding: 15px;
    margin-right: 20px;
    margin-bottom: 10px;
    height: fit-content;
}


#weather {
    background-color: white;
    width: 531px;
    border: solid #adadad;
    border-radius: 12px;
    margin-top: 0;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#currentWeather{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#curWeatherThumbnail {
    width: 200px;
}

#forecastButton {
    color: white;
    background-color: #1e90ff;
    border-color: dodgerblue;
    font-weight: bold;
    border-radius: 12px;
    padding: 18px 30px 18px 30px;
    font-size: 16px;
    display: block;
    margin: auto;
}

#market {
    background-color: white;
    width: 531px;
    border: solid #adadad;
    border-radius: 12px;
    margin-top: 10px;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#marketImg {
    width: 500px;
    display: block;
    margin: auto;
    padding: 5px;
}

#sellButton {
    color: white;
    background-color: #1e90ff;
    border-color: dodgerblue;
    font-weight: bold;
    border-radius: 12px;
    padding: 18px 30px 18px 30px;
    font-size: 16px;
    display: block;
    margin: auto;
}

#sometext {
    background-color: antiquewhite;
    margin-top: 0;
    min-height: 100vh;
    
}

#devtitle {
    font-size: 74px;
    margin-top: 0;
    text-align: center;
    padding-top: 25px;
    margin-bottom: 0;
}

#devtext {
    text-align: center;
    margin-top: 0;
    font-size: 41px;
}

#forecastButton:hover, #sellButton:hover {
    background-color: #0684ff;
}

* {
    font-family: 'Commissioner', sans-serif;
}


