body {
    color: white;
}

/* Bungee-Tint-Regular Font */
.bungee-tint-regular {
    font-family: "Bungee Tint", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Honk Font */
.honk {
    font-family: "Honk", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
                       "MORF" 15,
                       "SHLN" 50;
           }

/* Chinese Font */
.noto-sans-tc-chaineze {
                   font-family: "Noto Sans TC", sans-serif;
                   font-optical-sizing: auto;
                   font-weight: 100;
                   font-style: normal;
               }

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #6b933c;
    display: block;
}

.mid-aligned-content {
    width: 60%; /* Adjust the width of your content */
    margin: 0 auto; /* Automatically add space to both sides */
    text-align: center; /* Align text in the middle of the div */
}

.icon-link img {
    width: 50px; /* Adjust size of your icon */
    height: 50px;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.icon-link img:hover {
    transform: scale(1.2); /* Icon will grow on hover */
}


.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px; /* Adjust this value to make the logo smaller */
    height: auto; /* Maintains aspect ratio */
    margin-top: 50px; /* Adjust this value to add space above the logo */
}

h1 {
    font-size: 80px;
    margin-top: 30px; /* Adjust this value to move it down */
    font-family: 'Bungee Tint', sans-serif; /* Change this to the font you want */
}

p {
    font-size: 80px;
    font-family: 'Honk' , sans-serif;
    margin-top: 40px;
}

::selection {
    background-color: yellow; /* The color of the selection */
    color: black; /* Optional: Change the text color when selected */
}

/* Hide the custom context menu by default */
.context-menu {
    position: absolute;
    display: none; /* Initially hidden */
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    width: 200px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.menu-item {
    font-family: 'Noto Sans TC', sans-serif; /* Change this to the font you want */
    padding: 5px 10px; /* Smaller padding to make it more compact */
    font-size: 14px; /* Smaller font size */
    border-bottom: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
}

.menu-item:hover {
    background-color: yellow; /* Highlight color */
    color: black; /* Change text color to black on hover */
}

.menu-item:last-child {
    border-bottom: none; /* Remove the border on the last item */
}

#popup-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 150px; /* Default size */
    transition: all 1s ease; /* Smooth transition */
}

/* Effect 1: Fade In (for slow music) */
.fade-in {
    opacity: 0;
    transition: opacity 2s ease-in; /* Slow fade-in */
}

/* Effect 2: Pop Up (for pop-up sound) */
.pop-up {
    transform: translate(-50%, -50%) scale(0.5);
    transition: transform 0.3s ease-out;
}

/* Effect 3: Fill Screen (for fill screen sound) */
.fill-screen {
    width: 100vw; /* Fill entire screen */
    height: 100vh;
    object-fit: cover;
    transition: all 1s ease-in-out;
}
