/*@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@500;600;700;800;900&family=Bungee&family=Coda+Caption:wght@800&family=Do+Hyeon&family=Fjalla+One&family=Oswald:wght@500;600;700&family=Rubik:wght@400;400;600;700;900&family=Staatliches&family=Teko:wght@400;500;600;700&family=Yantramanav:wght@400;500;700;900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');*/
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik/Rubik-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Charter-Regular';
    src: url('fonts/Charter/charter_regular.woff') format('woff'),
         url('fonts/Charter/charter_regular.ttf') format('truetype');
}

body, #game-name {
    background-color: #F4F7D9;
}
body {
    overflow: hidden;
    margin: 0;
}

#selectors {
    position: absolute;
    left: 5px;
    top: 5px;
}
#selectColumn {
    display: none;
}

#header {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    display: grid;
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: 1fr;
}
#game-name {
    padding-top: 5px;
    position: relative;
    grid-column-start: 2;
    grid-column-end: -2;
    grid-row-start: 1;
    grid-row-end: -1;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
#select-another-game {
    position: absolute;
    left: 0;
    top: 0;
}
#display-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    overflow-y: scroll;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}


.text-down, .text-down-xp {
    font-family: sans-serif;
    font-weight: 800;
    dominant-baseline: middle;
    text-anchor:middle;
    /*fill: rgba(0, 0, 0, .6);*/
    fill: rgba(255, 255, 255, .85);
}
.text-down {
    font-size: 12;
}
.text-down-xp {
    font-size: 9;
}
.text-score {
    font-size: 22;
    /*font-weight: 700;*/ /*4/5/6/700*/
    font-variation-settings: 'wght' 700;
    font-family: 'Rubik', sans-serif;
    letter-spacing: .05em;
    dominant-baseline: middle;
    text-anchor:middle;
    fill: rgb(245, 245, 245);
    stroke: rgb(50, 50, 50);
    stroke-width: 1;
}
.text-timeout {
    font-size: 16;
    /*font-weight: 700;*/ /*4/5/6/700*/
    font-variation-settings: 'wght' 700;
    font-family: 'Rubik', sans-serif;
    dominant-baseline: middle;
    text-anchor:middle;
    fill: rgb(245, 245, 245);
    stroke: rgb(50, 50, 50);
    stroke-width: 1;
    letter-spacing: .25em;
}
.text-desc {
    font-size: 15;
    dominant-baseline: middle;
    /*letter-spacing: -0.75px;*/
    transform: scaleX(0.85);
}
.info-text-desc {
    /*font-family: sans-serif;*/
    font-family: 'Charter-Regular';
    color: rgb(255, 255, 255);
    background-color: rgba(0,0,0,.7);
    margin: 0;
    padding: 3px;
}
.play-info {
    opacity: 0;
    display: none;
    pointer-events:none;
}

.play-group:hover .play-info {
    opacity: 1;
    display: inline;
}

.yardMarkers {
    font-size: 16;
    /*font-weight: 600;*/ /*4/5/6/700*/
    font-variation-settings: 'wght' 600;
    font-family: 'Rubik', sans-serif;
    letter-spacing: .25em;
    dominant-baseline: middle;
    text-anchor: middle;
}
.field-dark {
    /*fill: rgb(77, 161, 64);*/
    /*fill: rgb(85, 187, 69);*/
    fill: hsl(109, 46.5%, 50.2%);
}

.field-light {
    /*fill: rgb(79, 182, 63);*/
    fill: hsl(115, 46.5%, 50.2%);
}

.copyright-notice {
    font-family: 'Charter-Regular';
    font-size: 0.75em;
    margin-top: 5px;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.copyright-notice p {
    margin: 0;
}


#button-select-game:hover .icon-path {
    stroke:rgb(245,245,245);
}
#button-select-game:hover .icon {
    fill: rgb(53, 53, 53);
}


.icon-path {
    stroke:rgb(53, 53, 53);
    stroke-width:3.5;
    fill:none;
    pointer-events: none;
}
.icon {
    fill: none;
    transition: fill .4s ease;
}
