body {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f0f0f0;
    overflow: hidden; /* to prevent scrollbars from the main page */
}

#root {
    height: 100vh;
}

/* Adding a subtle noise texture to the background */
body::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.12' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}
