body {
    font-family: "Silkscreen", sans-serif;
    background-color: #003865;
    overflow-x: hidden;
}

section {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.mainTitle {
    font-size: 85px;
    color: #EF5B0C;
    margin: 10px auto;
}

.playerBoard{
    margin-top: 10%;
}

.player {
    font-size: 150px;
    color: #EF5B0C;
}

.current {
    padding-left: 15px;
    padding-right: 15px;
    border: 10px solid rgb(60, 207, 78);
    border-image: linear-gradient(to bottom, rgba(108, 219, 141, 0) 70%, rgba(60, 207, 78, 1) 25%, rgba(60, 207, 78, 1) 30%, rgba(60, 207, 78, 1) 75%);
    border-image-slice: 1;
}


.playground {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 360px;
    margin: 10px auto;
    background-color: #151D3B;
    color: #3CCF4E;
}

.cell {
    font-family: "Nanum Pen Script", sans-serif;
    width: 120px;
    height: 120px;
    /* border: 4px solid #8FE3CF; */
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
}

.cell-corner {
    font-family: "Nanum Pen Script", sans-serif;
    width: 120px;
    height: 120px;
    border: 4px solid #D4F6CC;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
}

.cell-edge {
    font-family: "Nanum Pen Script", sans-serif;
    width: 120px;
    height: 120px;
    border-top: 4px solid #D4F6CC;
    border-bottom: 4px solid #D4F6CC;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
}

.cell-edge-side {
    font-family: "Nanum Pen Script", sans-serif;
    width: 120px;
    height: 120px;
    border-left: 4px solid #D4F6CC;
    border-right: 4px solid #D4F6CC;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
}

.result {
    font-size: 60px;
    color: #3CCF4E;
    margin: 20px auto;
}

.restart {
    background-color: #D4F6CC;
    width: 360px;
    height: 60px;
    font-size: 32px;
    color: #d86c23;
    border: 4px solid #3CCF4E;
    position: fixed;
    left: calc(50% - 180px);
    bottom: 270px;
}

.footer {
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 15px;
}

.footer-left {
    text-align: left;
    position: fixed;
    left: 15px;
    bottom: 15px;
}

.footer-right {
    text-align: right;
    position: fixed;
    right: 15px;
    bottom: 15px;
}

.footer-logo {
    height: 22px;
}

.footer-title {
    font-family: "Nanum Pen Script", sans-serif;
    color: #EF5B0C;
    font-size: 28px;
    text-decoration: none;
}

.title-other {
    color: #EF5B0C;
    font-size: 24px;
    text-decoration: none;
}

.title-other:hover {
    color: #3CCF4E;
    font-size: 24px;
    text-decoration: none;
}

.logo-github {
    height: 30px;
}

.langHeader {
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    top: 15px;
    right: 15px;
    position: fixed;
}

.lang {
    margin: 0 auto;
}

.button_lang {
    cursor: pointer;
    display: inline-block;
    padding: 0.25em 0em;
    border-radius: 10px;
    width: 5em;
    transition: 0.25s ease;
    color: #EF5B0C;
}

.button_lang:hover {
    background: #D4F6CC;
    transition: 0.25s ease;
}

.current_lang {
    background: #D4F6CC;
}

.translation {
    text-align: center;
    margin: 0.5em;
}

.homeHeader {
    text-align: left;
    position: fixed;
    left: 40px;
    top: 40px;
}

.title-home {
    color: #EF5B0C;
    font-size: 24px;
    text-decoration: none;
}

    .title-home:hover {
        color: #3CCF4E;
        font-size: 24px;
        text-decoration: none;
    }