/* ==========================
   START BUTTON
========================== */

#Start-Button {

    position: absolute;

    bottom: 30%;

    left: 50%;

    transform: translateX(-50%);

    padding: 15px 30px;

    font-size: 1.5rem;

    font-weight: bold;

    color: white;

    /* background-color: #ff0033; */

    border: none;

    border-radius: 10px;

    cursor: pointer;

    transition:
        all 0.3s ease;

}


#Start-Button-Text {

    position: relative;

    display: inline-block;

    font-family:
        'Arial Black',
        Impact,
        sans-serif;

    font-size: 2rem;

    font-weight: 900;

    color: white;

    letter-spacing: 2px;

}