@import url('https://fonts.googleapis.com/css2?family=Jockey+One&display=swap');

body {
    font-family: 'Jockey One', sans-serif;
    background-image: url('/img/beach.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.skryto {
    display: none;
}

header {
    text-align: center;
    margin: 30px;
}

.logo {
    height: 100px;
    margin-right: 40px;
    vertical-align: middle;
}

h1 {
    font-size: 64px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

section {
    text-align: center;
    margin: 30px;
}

.blok {
    display: inline-block;
    padding: 30px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    max-width: 1000px;
}

.rozvrh, .kalendar {
    border-collapse: collapse;
    font-size: 20px;
}

.rozvrh th, .kalendar th {
    font-weight: normal;
}

.den {
    padding-right: 15px;
}

.hodina {
    padding-bottom: 10px;
}

.rozvrh td {
    width: 200px;
    height: 80px;
    text-align: left;
    border: solid 1px #afafaf;
}

.kalendar td {
    width: 180px;
    height: 100px;
    text-align: center;
    vertical-align: top;
    border: solid 1px #afafaf;
    padding: 10px 0;
}

.trenink, .akce {
    background-color: #f69327;
    color: white;
    padding: 5px 8px;
    margin: 8px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 20px;
}

.trenink:hover, .akce:hover {
    color: black;
}

.trenink.vybrany {
    background-color: #ed1c24;
}

.termin, .lektor {
    font-size: 14px;
}

.vypis {
    font-size: 20px;
    text-align: left;
    border-collapse: collapse;
}

.vypis td {
    padding: 10px 18px;
}

.vypis tr:not(:last-child) {
    border-bottom: solid 1px white;
}

.akce {
    padding: 8px 12px;
}

button {
    background-color: #f69327;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 28px;
    margin: 20px;
    cursor: pointer;
}

button:hover {
    color: black;
}

.pole {
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.25;
}

.pole input:first-of-type {
    margin-top: 10px;
}

.pole input:last-of-type {
    margin-bottom: 10px;
}

.vlevo {
    text-align: left;
}

.vpravo {
    text-align: right;
}

.vysledek {
    font-size: 18px;
    color: #e63939;
}

.poznamka {
    font-size: 16px;
    margin: 5px 0;
}

input, select, textarea {
    font-family: inherit;
    font-size: 16px;
    background-color: #f0f0f0;
    color: black;
    border: none;
    padding: 8px 16px;
    margin: 5px;
    width: 200px;
}

input:focus {
    background-color: #e2e2e2;
    outline: none;
}

textarea {
    width: 500px;
    height: 100px;
}

a {
    color: white;
}

.souhlas {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
}

.souhlas input[type=checkbox] {
    width: auto;
    margin: 0;
}

.hvezd {
    color: #ed1c24;
}

.kratky {
    width: 70px;
}

.dlouhy {
    width: 280px;
}

.dekujeme {
    margin: 30px 0;
    font-size: 48px;
    color: white;
}

.chyba {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 8px;
    background-color: #ed1c24;
    color: white;
    animation: hlaska 2s 3s 1 forwards;
    cursor: default;
}

@keyframes hlaska {
    from {opacity: 1}
    to {opacity: 0}
}