@font-face {
    font-family: 'logo';
    src: url('BRADHI.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
#site {
    position: absolute;
    top: 0%;
    left: 0;
    width: calc(100vw - 100px);
    height: calc(100vh - 100px);
    padding: 50px;
    overflow: hidden;
}

#container {
    position: relative; /* Ensure the container is positioned relative to allow absolute positioning of pseudo-elements */
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 5px;
    backdrop-filter: blur(5px);
    overflow: scroll;
    z-index: 10;
}

#container::before {
    content: ""; /* Required for the pseudo-element to work */
    position: absolute; /* Position the pseudo-element absolutely within the container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Set the background color */
    opacity: 0.5; /* Apply opacity to the background */
    border-radius: 10px; /* Match the border-radius of the container */
    z-index: -1; /* Ensure the pseudo-element is behind the actual content */
}

.title {
    font-family: 'logo', sans-serif;
    font-size: 25px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 50px);
    grid-template-rows: repeat(auto-fit, 25px);
    gap: 10px;
    opacity: 1;
}
.app {
    width: 200px;
    height: 100px;
    background-color: white;
    border-radius: 10px;
}