#mobileNav {
    z-index: 2;
}

body {
    color: white;
    text-align: center;
}

button {
    margin-top: 10px;
    width: 150px;
    height: 45px;
    color: white;
    background-color: black;
    border-radius: 2em;
    transition: 0.5s;
    font-size: 16px;
}

button:hover {
    background-color: white;
    color: black;
}

#table-content {
    justify-content: center;
}

table {
    margin: 10px;
    border-collapse: collapse;
}

caption {
    font-size: 30px;
}

td, th {
    border: 1px solid lightgrey;
    padding: 5px;
    transition: 0.5s;
}

td:hover {
    background-color: lightblue;
    color: black;
}

#Rules-description {
    padding: 5px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

#Payout-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ol {
    padding: 10px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-gallery > li {
    flex-basis: 300px;
}

.image-gallery li {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.image-gallery li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

li {
    list-style-type: none;
}

h2 {
    margin: 5px;
    text-decoration: underline;
}

h3 {
    text-decoration: underline;
}

.infoWrapper {
    position: static;   
}

.info {
    position: relative;
    top: 0;
    opacity: 100;
    transition: opacity 500ms;
}

.fade-out {
    opacity: 0;
    /* height: 0px;
    overflow-y: hidden; */
}

.shrink {
    height: 0;
    overflow-y: hidden;
}

