@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
}

html,body {
    width: 100vw;
    height: 100vh;
    background-image: url(../assets/backgroundImg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 100%;
}

.container {
    width: fit-content;
    min-width: 950px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.time-box {
    color: #ffd0a2;
    font-size: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.top-box {
    display: flex;
}

.btn-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-box>button {
    margin-left: 20px;
}

.reference-picture-box {
    width: 300px;
    height: 300px;
    margin-right: 20px;
}

#reference-picture {
    width: 100%;
    height: 100%;
}

.game-box {
    width: fit-content;
}

.row1 {
    display: flex;
    justify-content: flex-start;
}

.pic-box {
    width: 200px;
    height: 200px;
    border: 1px solid #ffffb9;
}

.pic-box>img {
    cursor: pointer;
}

.pic-box>img {
    width: 100%;
    height: 100%;
}

.congratulations {
    color: red;
}

.technical-point {
    color: red;
    font-weight: bold;
}

.btn-introduction {
    color: #E67A30;
    font-weight: bold;
}

.team-member {
    color: red;
    font-weight: bold;
}