body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
}
header {
    background-color: #8B0000;
    padding: 20px;
    text-align: center;
}
h1 {
    margin: 0;
    font-size: 36px;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
}
nav a:hover {
    text-decoration: underline;
}
/* Accessibility */
nav a:focus {
    text-decoration: underline;
}
/* That should also handle focus-visible and focus-within */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
#contact {
    background-color: #555;
    padding: 20px;
    text-align: center;
}
/*
#contact h2 {
    color: #8B0000;
}
*/
#mission {
    background-color: #444;
    padding: 20px;
    text-align: center;
}
#mission h2 {
    color: #fff;
}
.coach {
    background-color: #333;
    /* Place image to the left of text */
    display: grid;
    border: white;
    border-radius: 20px;
    padding: 5% 0 5% 0;
}
.coachImg {
    grid-column: 1;
    max-width: 75%;
    /* top right bottom left */
    padding: 5% 0 5% 10%;
}
.coachText{
    grid-row: 1;
    grid-column: 2;
    padding: 5%;
    text-align: left;
    right: 10%;
    margin-left: 10%;
}
.coachText-Mobile {
    grid-column: 1 !important;
    grid-row: 2 !important;
}
/*
.coachText h4 {
    text-align: left;
}
*/

#CoachGolota {
    margin-bottom: 5%;
}
#CoachKuli {
    margin-top: 5%;
}

.centered{
    /* center all the items in this div horizontally */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.left-centered{
    position: relative;
    left: 25%;
    transform: translateX(-25%)
}
.left-aligned{
    /* align all the items in this div to the left */
    position: relative;
    left: 0;
    transform: none;
}
.center-text{
    text-align: center;
}
.left-padding{
    padding: 20px;
}

table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 2px solid #ddd;
}
tr td {
    border: 1px solid #ddd !important;
}

.container div{
    /* Flexbox */
    display: flex;
}
button .button {
    width: 100vh;
    height: auto;
}

.recordList {
    /*text-align: center;
    /*
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    */
}

#noscript {
    background-color: white;
    color: red;
    text-align: center;
}
#ustaflogo {
    width: auto;
    height: auto;
    padding-top: 50px;
}