/*
PROJECT KHS
Created by Corey Robinson 2020
*/
.game{
    display: flex;
    flex-direction: column;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    border: 1px solid;
    border-color: #F2F3F4;
    background-color: #F2F3F4;
    border-radius: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: 5px 5px 4px #888888;
    height: max-content;
}
.game:hover{
    border-color: gray;
	box-shadow: 5px 5px 4px #888888;
}
.game-info{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    flex: 0 1 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.game-time{
    flex: 1 1 auto;
    text-align: center;
    border-bottom: 1px solid grey;
    font-size: 16;
}
.home-team{
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}
.away-team{
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}
.game-header{
    flex: 0 1 auto;
    color: #407FC7;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.game-header:hover{
    cursor: pointer;
    text-decoration: underline;
}
.home-image{
    display: flex;
    align-items: center;
    width: 175px;
    height: 150px;
}
.away-image{
    display: flex;
    align-items: center;
    width: 175px;
    height: 150px;
}
.home-image img{
    width: inherit;
    max-height: 150px;
}
.away-image img{
    width: inherit;
    max-height: 150px;
}
.team-name{
    color: #407FC7;
    font-size: 20px;
}
.team-name:hover{
    cursor: pointer;
    text-decoration: underline;
}
.score{
    font-size: 20;
    font-weight: bold;
}
.stat-button{
    margin-left: 10px;
    margin-right: 10px;
}
.box-score{
    font-size: 18px;
    color: black;
}
.home-away{
    font-size: 14;
    font-weight: bolder;
    text-align-last: center;
    text-align: center;
}
.team-logo-link{
    display: flex;
    align-items: center;
    height: inherit;
    width: inherit;
}