:root {
    background-color: rgb(0, 59, 104);
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* width: 100%; */
}

a {
    color: aqua;
}

a:visited {
    color: blanchedalmond;
}

h1, h2 {
    margin-top: 0;
}

h1 {
    text-align: center;
    margin-bottom: 0;
}

hr {
    margin: 15px 0;
    color: white;
}

main,
.instructions-box {
    background-color: rgb(0, 39, 76);
    padding: 30px;
    border-radius: 20px;
}

main {
    min-width: 600px;
    width: 800px;
    max-width: 800px;
}

.error-alert {
    display: none;
    margin-top: 15px;
    padding: 8px;
    border: 1px solid red;
    background-color: hsla(0, 100%, 50%, 0.5);
}

.instructions-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.listening-box {
    margin: 20px 0;
    padding: 10px;
    border: 2px solid white;
}

.listening-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listening-box-header > * {
    margin-top: 0;
    margin-bottom: 0;
}

.new-replays > p{
    margin: 0;
    padding: 7px 5px;
    background-color:rgb(23, 112, 202);
}

.new-replays > p:nth-child(even) {
    background-color:rgb(18, 86, 155);
}