* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
    user-select: none;
}

body {
    width: 100%;
    height: 100vh;
}

.parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

h2 {
    font-size: 3rem;
    color: green;
}

#con {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: #03001C;
    border: green 3px solid;
    border-radius: .1vmax;
    width: 26rem;
    height: 27rem;

}

button {
    padding: .5rem 1rem;
    background: #F99417;
    color: #fff;
    border: none;
    border-radius: .2vmax;
    /* margin-top: 1rem; */
    cursor: pointer;
    width: 7rem;
    height: 7rem;
    transition: ease-in-out background .1s;
}

button:hover {
    background: #8551cf;
}

#startBtn {
    width: 15rem;
    height: 4rem;
    font-size: 1.5rem;
    background: #03001C;
    border: green 3px solid;
}

i {
    font-size: 4rem;
}