/* Import Google font - League Spartan */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400;500;600;700&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "League Spartan", sans-serif;

    /* Chrome and Opera */
    user-select: none;

    /* Safari */
    -webkit-user-select: none;

    /* Konqueror HTML */
    -khtml-user-select: none;

    /* Firefox */
    -moz-user-select: none;

    /* Internet Explorer/Edge */
    -ms-user-select: none;
}

::selection {
    color: #fff;
    background: #6f6;
}

body {
    width: 100vw;
    color: #fff;
    background-color: #000;
}

.title-text {
    text-align: center;
    align-items: center;
    color: white;
    margin: 20px auto;
}

.stepByStep {
    justify-content: center;
}

table {
    table-layout: fixed;
    font-size: 20px;
}

th {
    padding: 10px 10px;
}

td {
    width: 10%;
}

.oathEN,
.oathCN,
.gftvAnthem,
#welcome,
.anthemLyrics {
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    table {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    table {
        table-layout: auto;
    }
}