@charset "utf-8";

@font-face {
    font-family: "MyFont";
    src: url("./fonts/Best10-FONT/BestTen-CRT.otf") format("woff2");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "MyFont", sans-serif;
}

.game-area {
    position: relative;

    width: 700px;
    margin: 20px auto;
    
    display: flex;

    border: 3px solid #666;
    box-shadow: 2px 2px 4px -2px gray;
    background-color: #ffe6f2;
}

.page-header {
    position: absolute;
    width: 700px;
    height: 30px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
    border-bottom: 3px solid #666;
    background-color: #ff69b4;
}

.page-icon-rabbit,
.game-icon-rabbit {
    height: 25px;
    margin-left: 3px;
    box-sizing: border-box;
    border: 3px solid #666;
    background-color: white;
}

.page-title {
    margin-left: 5px;
}

.close-button {
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: 10px;

    box-sizing: border-box;
    border: 3px solid #666;
    background-color: white;
}

.word-chain-area {
    width: 300px;
    height: 500px;
    margin: 70px auto 50px 35px;

    border: 3px solid #666;
    background-color: white;
}

.game-header {
    width: 300px;
    height: 22px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
    border-bottom: 3px solid #666;
    background-color: #ffcce5;
}

.game-icon-rabbit {
    height: 18px;
    margin-left: 2px;
}

.game-title {
    margin-left: 3px;
    font-size: 13px;
}

.word-chain-list {
    max-height: 478px;
    overflow-y: auto;
}

@media screen and (min-width: 768px) and (max-height: 1100px) {
    .word-chain-area {
        height: 430px;
    }
    .word-chain-list {
        height: 408px;
    }
}

.word-chain-list::-webkit-scrollbar {
    width: 16px;
}

.word-chain-list::-webkit-scrollbar-track {
    background-color: #eee;
    border-left: 2px solid #666;
}

.word-chain-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-top: 2px solid #666;
    border-bottom: 2px solid #666;
    border-left: 2px solid #666;
}

.word-chain-list::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.word-chain-table {
    width: 284px;
}

.right-area {
    width: 300px;
    margin-right: 35px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

input,
button {
    font-family: "MyFont";
}

.input-area {
    width: 300px;
    margin-top: 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-area button {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}

.input-form {
    font-size: 20px;
    margin-bottom: 5px;
}

.input-area input[type="text"] {
    width: 170px;
    height: fit-content;
    border: 3px solid #666;
    font-size: 20px;
}

.input-area button[type="submit"] {
    width: 70px;
    height: 40px;
    border: 3px solid #666;
    font-family: "MyFont", sans-serif;
    font-size: 20px;
}

.message-area {
    width: 250px;
    height: 40px;
    margin-top: 10px;
    border: 3px solid crimson;
    color: crimson;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-area:empty {
    border-color: transparent;
}

.endMessage {
    text-align: center;
    color: crimson;
}

.rabbit-girl,
.rabbit-girl-crying {
    position: absolute;
    height: 400px;
    right: -55px;
    bottom: -50px;
}

.reset-area {
    width: 300px;
    height: 100px;
    margin-top: 70px;
    margin-right: 35px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-area button {
    width: 180px;
    height: 70px;
    border: 3px solid #666;
    font-family: "MyFont", sans-serif;
    font-size: 20px;
    cursor: pointer;
}

.rabbit-girl-crying {
    height: 380px;
    right: -80px;
}