@charset "UTF-8";
* {margin: 0; padding: 0; box-sizing: border-box; border-radius: 0;font-family:sans-serif;}

.container {
    width: calc(100% - 8px);
    max-width: 400px;
    margin: 0 auto;
}

header {
    margin-bottom: 24px;
    padding: 8px;
    background: url('../img/ball.webp') center/cover;
    height: 180px;
}
nav {
    letter-spacing: 4px;
}
a {
    text-decoration: none;
    border-radius: 3px;
    padding: 0 8px;
    font-size: 22px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
    box-shadow: 3px 3px 3px rgba(0,0,0,.6);
    background-image: linear-gradient(-45deg, #444 0%, #222 20%, #555 34%, white 53%, #444 100%);
}
form {
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    gap: 4px;
}
input,button {
    height: 28px;
    line-height: 28px;
    border-radius: 2px;
}
input {
    background: #fff;
    padding: 0 5px;
    border: 1px solid #333;
    width: 0;
    flex: 1;
}
button {
    border: none;
    background: #333;
    color: white;
    padding: 0 16px;
}
h1 {
    position: relative;
    display: inline-block;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 16px;
    padding: 2px 8px;
    border-radius: 5px;
    border: 1px solid #333;
}
h1::before {
    position: absolute;
    content: '';
    bottom: -10px; left: 16px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    border-width: 10px 10px 0px 10px;
}
h1::after {
    position: absolute;
    content: '';
    bottom: -9px; left: 16px;
    border-style: solid;
    border-color: white transparent transparent transparent;
    border-width: 10px 10px 0px 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
}
th {
    font-size: 14px;
    font-weight: normal;
}
td,th {
    border: 1px solid #333;
    text-align: center;
    height: 30px; line-height: 30px;
}
tbody tr:nth-of-type(1) td:nth-of-type(4) {
    color: red;
}
ul {
    list-style: none;
}
li {
    border-bottom: 1px solid #333;
    margin-bottom: 8px;
    line-height: 1.6;
}
li > span {
    color: red;
}
.fa-right-to-bracket {
    text-shadow:
    0 0 8px  white,
    0 0 16px white;
}