@font-face {
    font-family: 'MyFont';
    src: url('/fonts/Rabar_021.ttf') format('truetype');
}

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

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

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

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

#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;
}

@media screen and (max-width:900px) {
    .parent {
        transform: scale(.75);
    }
    h2{
        font-size:2rem ;
    }
}