* {
    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: .3rem;
    padding: 1rem;
    background: wheat;
    border: green 3px solid;
    border-radius: .1vmax;
    width: 26rem;
    height: 27rem;
    
}

button {
    padding: .5rem 1rem;
    background: green;
    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-color: rgb(27, 181, 27);
}

#startBtn{
    width: 15rem;
    height: 4rem;
    font-size: 1.5rem;
}
i{
    font-size: 4rem;
}