* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;              /* Adjust size as needed */
    font-weight: bold;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;

    /* Optional: Gradient text effect */
    /* background: linear-gradient(45deg, #007bff, #ff4081); */
    background: linear-gradient(45deg, #0055ff, #ff0000);
    /* #007bff */
    -webkit-background-clip: text;
    color: transparent;

    /* Optional: Text shadow for depth */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: black;
}

.container {
    text-align: center;
}

.logo-container {
    position: relative;
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
    background: linear-gradient(45deg, blue, red);
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
}

.logo {
    /* background-color: black; */
    width: 100%;
    max-width: 512px;
    height: auto;
    display: block; /* Ensures image stays centered within its container */
    margin: 0 auto;
}

.countdown {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.button-bar {
    /* bottom: 0px; */
    width: 100%;
    display: flex;
    max-width: 512px;
    /* max-width: 512px; */
    margin: 0 auto;
    /* justify-content: space-around; */
}

.control-button {
    font-family: 'Orbitron';
    font-weight: 400;
    flex: 1;  /* Makes each button take up equal space */
    padding: 20px 0;  /* Ensures the buttons are more square */
    font-size: 1rem;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0;  /* Removes any rounded corners */
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.control-button:hover {
    opacity: 1;
}









