
/* CORE */


*, *:before, *:after {
  box-sizing: border-box;
}

body > section {
}
.content-container {
    background: none;
    border: 0;
    box-shadow: none;
    max-width: 1025px;
    padding-left: 0;
    padding-right: 0;
}
.content-outer {
    text-align: center;
}
.content-inner {
    display: inline-block;
    margin: 0 auto;
    max-width: none;
    width: auto;
}


.main-container {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    grid-column-gap: 10px;
}


/* BREAD CRUMBS */

.bread-crumbs-container {
    background-color: transparent;
    text-align: center;
}
    .bread-crumbs-container nav {
        background-color: rgba(255,255,255, .25);
        border: 1px #888888 solid;
        border-radius: 9999px;
        color: #aaaaaa;
        margin: 8px auto 3px auto;
        padding: 3px 30px;
    }
        .bread-crumbs-container nav a {
            color: white;
        }
            .bread-crumbs-container nav a:hover {
                text-decoration: underline;
            }



/* AVATAR */

.avatar {
    float: left;
    height: 100px;
    width: 100px;
}



/* PAGE TITLE */

.avatar-and-title h2 {
    color: white;
    font-size: 48px;
    letter-spacing: -1px;
    margin: 0px;
    padding: 20px;
    text-align: center;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
    word-spacing: 15px;
}



/* ARROWS */

.arrow-container {
    background-color: aqua;
    max-width: 1000px;
    top: 400px;
    width: 100%;
}
  .arrow {
      color: gold;
      display: block;
      font-size: 72px;
      font-weight: bold;
      margin-top: 260px;
      text-decoration: none;
  }
  .arrow:hover {
      color: white;
  }
    .left-arrow {
        float: left;
    }
    .right-arrow {
        float: right;
    }



/* HIGH SCORES */

.table-container {
    padding: 10px;
}
    .high-score-table-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; 
        grid-column-gap: 10px;
    }
        .high-scores {
            background-color: white;
            border: 4px white solid;
            border-collapse: separate;
            border-radius: 10px;
            border-spacing: 0px;
            box-shadow: 5px 5px 5px rgba(0,0,0, .35);
            color: #555555;
            /* float: left; */
            margin: 10px 0 0 0;
            overflow: visible;
            padding: 0 10px 20px 10px;
            position: relative;
            vertical-align: top;
            /* width: 250px; */
            z-index: 1;
        }
            .high-scores .table-header {
            }
            .high-scores tr {
                overflow: visible;
                position: relative;
                width: 100%;
                z-index: 1;
            }
            .high-scores tr:nth-child(even){
            }
            .high-scores tr.highlight {
                animation: pulse 1.5s infinite alternate;
                background-color: yellow;
                border-radius: 25px;
                overflow:visible;
                position: relative;
                z-index: 2;
            }
                .high-scores tr.highlight td {
                    overflow:visible;
                    position: relative;
                    z-index: 2;
                }
                .high-scores td {
                    border-bottom: 1px #dddddd solid;
                    padding: 5px;
                    text-align: center;
                    width: 50%;
                }
                .high-scores tr:last-child td {
                    border-bottom: 0px;
                }



/* ANIMATION */

@keyframes pulse {
    from {
        box-shadow: 0px 0px 15px white;
        background-color: #ffffaa;
        color: #444444;
    }
    to {
        box-shadow: 0px 0px 40px orange;
        background-color: yellow;
        color: black;
    }
}



/* SHARED */

.button-container {
    padding: 15px 0px 25px 0px;
    text-align: center;
}
.button-container a {
    background-image: none;
    border-radius: 10px;
    font-family: "Oxygen", Helvetica, sans-serif;
    font-size: 16px;
    height: auto;
    margin: 5px;
    max-height: none;
    max-width: none;
    padding: 15px 25px !important;
    text-align: center;
    width: auto;
}


/* MOBILE */

@media all and (max-width: 850px) {
    .content-container {
        text-align: center;
    }
        .main-container {
            display: inline-grid;
            grid-template-columns: 60px minmax(1fr, 400px) 60px;
        }
            .arrow {
                margin-top: 150px;
            }
            .high-score-table-wrapper {
                grid-row-gap: 10px;
                grid-template-columns: 1fr;
            }
                .high-scores {
                    margin: 0 auto;
                    max-width: 400px;
                }
            .avatar-and-title {
                display: grid;
                grid-template-columns: 100px 1fr;
                grid-column-gap: 10px;
                margin: 0 auto;
                max-width: 400px;
                padding-bottom: 10px;
                
                align-items: center;
                justify-items: center;
            }
                .avatar-and-title h2 {
                    font-size: 36px;
                    margin: 0;
                    padding: 0;
                }
}

@media all and (max-width: 500px) {
    .avatar-and-title h2 {
        font-size: 28px;
        text-shadow: 1px 1px 3px rgba(0,0,0, .75);
    }
}

@media all and (max-width: 400px) {
    .arrow {
        font-size: 48px;
    }
    .avatar-and-title h2 {
        font-size: 24px;
        text-shadow: 1px 1px 3px rgba(0,0,0, .75);
    }
        .main-container {
            grid-template-columns: 40px minmax(1fr, 400px) 40px;
        }
}

