body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a23; /* Dominant color extracted from the image */
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

.image-container {
    width: 100%; /* 2/3 of the width */
    height: 66.67vh; /* 2/3 of the viewport height */
    background: url('FoxTangoLogo.png') no-repeat center center;
    background-size: contain;
    background-color: #0a0a23; /* Ensure the background color is the same as the body */
}
