
body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    /* width: 100%;
    height: 100%; */
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    user-select: none;  /*禁止選取*/
    -ms-user-select: none; /*禁止選取*/
    -webkit-user-select: none; /*禁止選取*/
    -moz-user-select: none; /*禁止選取*/
}

a {
    color: LightBlue;
}

.header {
    position: relative;
    height: 120px;
    overflow: none;
    left: 1vmin;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.header h1 {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 2vmin;
    margin-top:25px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.header h4 {
    position: absolute;
    transform: translateY(-50%);
    margin-top:45px;
    margin-left: 2.5vmin; 
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.animation-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    box-shadow: 0 2px 0 white;
}

.animal {
    position: absolute;
    height: 75%;
    /* 75% of original 50px height */
    width: auto;
    bottom: 2px;
    /* Align with the floor */
    opacity: 0;
    /* Initially transparent */
}

.body-container {
    position: relative;
    top: 0px;
    /* z-index: 2; */
    /* background-color: white; */
}

.spaceLh {
    margin-left: 3vmin;
    font-size: 4vmin;
}

.spaceLa {
    margin-left: 6vmin;
    font-size: 3vmin;
}




.button-container {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: DarkCyan;
    height: 4.5vmin;
    /* width: 45%; */
    width: 36%;
    border-radius: 8px;
    padding: 11px;
    z-index: 3;
}

.custom-button {
    background-color: Turquoise;
    color: #000;
    border: none;
    padding: 5px 2px;
    font-size: 2.75vmin;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    /* width: 22%; */
    width: 30%;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-button:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    background-color: DarkSlateGray;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

