body {
    margin: 0;
    padding: 20px;
    background-color: #000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
}

.container {
    display: flex;
    align-items: center;
}

.logo {
    width: 240px; /* Or desired width */
    height: 240px; /* Or desired height */
    margin-right: 20px; /* Adds some space between the logo and the buttons */
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neon-button {
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(255,0,150,1) 0%, rgba(0,219,222,1) 100%);
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255,0,150,1), 0 0 20px rgba(0,219,222,1), 0 0 30px rgba(0,219,222,1);
    transition: all 0.2s ease;
}

.neon-button:hover {
    box-shadow: 0 0 20px rgba(255,0,150,1), 0 0 30px rgba(0,219,222,1), 0 0 40px rgba(0,219,222,1);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    font-size: 24px;  /* Increase the font size */
    color: white;  /* Change the text color */
    text-shadow: 0 0 10px lime, 0 0 20px lime, 0 0 30px lime, 0 0 40px lime;  /* Add a green glow effect */
    animation: marquee 15s linear infinite;  /* Slow down the animation speed */
}

.messages {
    margin-top: 20px;
    font-family: monospace;
}

.message-green {
    color: #0f0; /* Neon green text for start messages */
}

.message-red {
    color: #f00; /* Red text for stop messages */
}

.message-blue {
    color: #00f; /* Blue text for image messages */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, calc(25% - 10px)));
    gap: 10px;
    margin-top: 20px;
    padding-left: 80px;
    width: 500px;
    justify-items: center;
}

.ship-image {
    width: 100%; /* Makes the image fill the cell, adjust as needed */
    max-width: 220px; /* Adjust based on your preference */
    cursor: pointer;
    transition: transform 0.2s; /* Smooth scaling on hover */
}

.ship-image:hover {
    transform: scale(1.1); /* Slightly enlarge images on hover */
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}