/* Define the custom font */
@font-face {
    font-family: 'FrogBlock';
    src: url('/.CuteDesktop/VisitorYou/SOZAI/fonts/FROGBLOCK-V2.1-by-Polyducks.ttf') format('truetype');
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #000; /* Adjust background color if needed */
    background-image: "/forextpixelbg.png";
    font-family: 'FrogBlock', sans-serif; /* Apply the custom font */
}

body,td,th {
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
    
    
}

#gif-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Ensure the container itself doesn't overflow */
}

img {
    display: block; /* Removes any potential gap under images */
    margin: 0;
    padding: 0;
    border: none; /* In case there's a default border causing overflow */
}


img:hover {
    transform: scale(1.2); /* Add a slight scale effect on hover */
  filter: drop-shadow(0 0 20px rgba(255, 182, 193, 0.7)); /* Add a glow effect (adjust as needed) */
  transition: 0.3s ease-in-out;
}


