/* focat so cool */

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #000000;
}

a {
    text-decoration: none;
    color: #fff;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 10px;
}
h3 {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin: 10px;
    font-weight: 400;
}

.cred {
    /* position above the h1 */
    position: relative;
    top: 14px;
    /* end position above the h1 */
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin: 10px;
    font-weight: 400;
}



#logo {
    /* center the logo */
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -1%);
    /* end center the logo */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #68248f;
    box-shadow: 0 0 10px #68248f;
    transition: 0.3s all ease-out;
}


}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(104, 36, 143, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(104, 36, 143, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(104, 36, 143, 0);
    }
}

#game_frame {
    /* center the game */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#Selection {
    background-color: #2c2626;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    transition: 0.3s all ease-out;
    box-shadow: 0 0 10px #68248f;
}
#Selection:hover {
    transition: 0.3s all ease-out;
    background-color: #222;
    box-shadow: 0 0 10px #781381;
    /* scale up */
    transform: scale(1.05);
}
#Selection h1,
#Selection h3 {
    text-align: center;
}

.selection-itms {
    /* space between items = 0 */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* end space between items = 0 */
}

input[type="button"] {
    color: #fff;
    transition: 0.3s all ease-out;
    /* center btn */
    display: block;
    margin: 0 auto;
    /* end center btn */
    background-color: #68248f;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    border: 0.1px solid #fff;
}

input[type="button"]:hover {
    transition: 0.3s all ease-out;
    background-color: #781381;
}

select {
    background-color: #011;
    color: #fff;
    border: 0.1px solid #fff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
}