* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    position: relative;
}

.logo-holder {
    width: 100%;
    display: flex;
	flex-direction: column;
    align-items: center; 
    justify-content: center;
    perspective: 1000px;
    height: 50%;
	margin: 50px;
}

.logo { 
    max-width: 400px;
    transition: transform 0.2s ease;
}

.logo_text {
    max-width: 400px;
    margin-top: 40px;

}
.blurred-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.mosaic-tile {
    background: url('logical_perspective_logo_1000x1000_no_text.jpg') no-repeat;
    background-size: 1000%;
    width: 8.33%; /* Equivalent of 1fr in a 12 column grid */
    height: 8.33vh; /* Equivalent of 1fr in a 12 row grid */
	transition: background-position 5s linear, filter 5s linear, transform 5s linear;		
}

.mosaic-tile:hover {
    transition: filter 0.3s;
}

@keyframes growAndBlur {
    0% {
        background-size: 5%;
        background-position: center;
        filter: blur(40px);
    }
	60% {
        filter: blur(7px);
	}
    80% {
        background-size: 100%;
        filter: blur(80px);
    } 
		
	95% {
        background-size: 4%;
        filter: blur(100px);
    }
	96% {
         background-size: 4%;
       filter: blur(5px);
	}
	100% {
         background-size: 4%;
		filter: blur(10px);
    }
}

.dot-tile {
    background-size: cover; /* Make the image the same size as the tile */
    animation: growAndBlur 5s; /* Apply the grow and blur animation */
}

.scrolling-ship {
  position: fixed;
  transition: all 0s; /* Ensure transition doesn't override JS logic */
}


#debug-terminal-1 {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 33.33%; /* One-third of the screen width */
    height: 200px;
    background-color: rgba(30, 30, 30, 0.9); /* Dark background with opacity */
    color: #00ff00; /* Bright green text */
    font-family: 'Courier New', Courier, monospace; /* Monospaced font */
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto; /* Scrollable content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    font-size: calc(0.5vw + 0.3em); /* Adjusted proportional font size */
}

#debug-terminal-2 {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 10px;
    right: 10px; /* Placed on the other side of the screen */
    width: 33.33%; /* One-third of the screen width */
    height: 200px;
    background-color: rgba(30, 30, 30, 0.9); /* Dark background with opacity */
    color: #00ff00; /* Bright green text */
    font-family: 'Courier New', Courier, monospace; /* Monospaced font */
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto; /* Scrollable content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    font-size: calc(0.5vw + 0.3em); /* Adjusted proportional font size */
}
