body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    font-family: 'Orbitron', Arial, sans-serif;
    background-color: black;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.side {
    width: 10%;
    background-color: black;
}

.center {
    width: 80%;
    background-image: url('wbg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e90ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.content h1 .orange-text {
    color: #ff8c00;
}

.content .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: none;
}

