body {
    margin: 20 40 40 40;
    background-color: #f05a28;
    height: calc(100% - 80px);
}

img {
    box-shadow: 0 0 5px 2px #00000050;
}

h3, b {
    text-transform: capitalize;
    vertical-align: top;
}

#content {
    display: grid;
    grid-template-rows: 50px 20px 1fr 50px;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    justify-items: center;
    height: 100%;
    min-height: 320;
    max-width: 1400;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 11px 5px #00000050;
    margin: 0 auto;
    overflow-y: auto;
}

#header>h2 {
    height: 40;
    margin: 0;
    text-align: center;
}

#tabs {
    grid-row: 1/2;
    grid-column:1/4;
    height: 50px;
    width: calc(100% - 82px);
    max-width: 1400;
    display: flex;
    justify-content: space-around;
    position: absolute;
    top: 60;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 37%,rgba(255,255,255,0.46) 53%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 98%);
}

.tab {
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    width:100%;
    height: 100%;
    border-radius: 0 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaeaea;
    transition: 1s all;
    z-index: 100;
}

.tab.selected {
    height: 90%;
    background-color: #dadada;
}

.tab:first-child {
    border-radius: 10px 0 15px 0;
}

.tab:last-child {
    border-right: none;
    border-radius: 0 10px 0 15px;
}

.center {
    grid-row: 3/4;
    grid-column: 1/4;
    height: 100%;
    width: 100%;
}

.window {
    margin: 0 10;
    width: calc(100% - 20px);
    display: none;
    transition: 1s display 1s
    ,.5s opacity;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5px;
}

.focus {
    display: grid;
}

.responserow {
    display: grid;
    grid-template-rows: 26px 15px;
    border: 1px solid #0000003b;
    border-radius: 10px;
    padding: 5px;
    overflow: auto;
}

.gamerow {
    display: grid;
    grid-template-rows: 26px auto;
    border: 1px solid #0000003b;
    border-radius: 10px;
    padding: 5px;
}

.gamerow>p, .responserow>p{
    margin: 0 12;
}

.gamerow>p:last-child, .responserow>p:last-child  {
    margin-bottom: 10;
}

.gamerow>h3, .responserow>h3 {
    margin: 0;
    font-size: 22;
}

.gamerow>.caveat, .responserow>.caveat {
    grid-column: span 1;
    align-self: end;
    font-size: 13;
    margin: 2;
}

#fade {
    height: 100%;
    width: 100%;
    grid-row: 1/2;
    grid-column:1/4;
    box-shadow: 0 5px 18px 4px white;
    position: sticky;
    top: 0;
}

.login {
    grid-row: 3/4;
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newresponserow, .newgamerow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newresponserow>div, .newgamerow>div {
    background-color: lightgray;
    height: 60;
    width: 60;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50;
}
