#img1 {
    width: 50%;
    position: absolute;
    top:2%;
    left:-3%;
}

#img2 {
    width: 34%;
    position: absolute;
    top:2%;
    left:60%;
}

#header {
    position: absolute;
    top: 5%;
    left: 35%;
    color: white;
    font-size: 70px;
}

#header2 {
    position: absolute;
    top: 27%;
    left: 46%;
    color: white;
     font-size: 30px;
}

.buttons {
    position: absolute;
    
    width: 150px;
    height: 55px;

    background:rgba(255,255,255,0.5); /* white + 50% transparency */
    border: none;

    display: flex;          /* centers the text */
    justify-content: center;
    align-items: center;

    color: black;
    font-size: 18px;
    font-weight: 1500 !important;
    padding: 0;

    cursor: pointer;

    /* subtle glow */
    text-shadow: 
    0.5px 0.5px 0 red,     /* Thicken: No Change */
    -0.5px -0.5px 0 red,   /* Thicken: No Change */
    0 0 1px red,       /* Reduced Blur (8px -> 4px) */
    0 0 5px rgba(255, 0, 0, 0.3);

}

#Login {
    top:52%;
    left:45%;
    z-index: 9999;
}

#game {
    top:67%;
    left:45%;
    z-index: 9999;
}

body {
    background-color: black;
    margin: 0;
  }