#heroSect {
    background-image: url(../images/smashHero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 57vh;
}

#introduction-text {
    padding: 20px;
    color: white;
    text-align: center;
    font-family: monospace, 'Times New Roman', Times, serif;
    height: 16vh
}

#tournament-text {
    padding: 20px;
    color: white;
    text-align: center;
    font-family: monospace, 'Times New Roman', Times, serif;
    background-color: #2e3141;
}

#upcoming-text {
    padding: 20px;
    color: white;
    text-align: center;
    font-family: monospace, 'Times New Roman', Times, serif;
    background-color: #3f4e85;
}

#upcoming-text a {
    text-decoration: underline;
}

#about-text {
    padding: 20px;
    color: white;
    text-align: center;
    font-family: monospace, 'Times New Roman', Times, serif;
    background-color: #45558d;
}

#about-text a {
    text-decoration: underline;
}

#table-content {
    display: inline;
    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;
}

@media screen and (min-width: 520px) {
    #table-content {
        display: flex;
    }
}

@media screen and (min-width: 1000px) {
    #heroSect {
        display: flex;
        background-position: 0% 0%;
        align-items: center;
        padding: 60px;
    }

    #heroSect .desktop {
        display: flex;
        width: 100%;
    }

    iframe {
        margin: 1em;
    }

    .twitter-timeline {
        margin: 1em;
    }
}