body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    user-select: none;

}

#tournament-list {
    width: 500px;
}

.tournament-item {
    background-color: #f2f2f2;
    border-radius: 30px;
    padding: 20px 30px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.tournament-item:hover, .tournament-item:focus, .tournament-item:active {
    background-color: #e9e9e9;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

h2 {
    margin: 0;
}

h4 {
    font-weight: 500;
    margin: 0px;
    margin-top: 4px;
    margin-right: 2px;
    margin-left: 2px;
}

a  {
    border: none;
    outline: none;
    text-decoration: none;
    color: #292929;
    user-select: none;
}

* {
    -webkit-tap-highlight-color: transparent;
}