@import url('https://fonts.googleapis.com/css2?family=Anek+Malayalam:wght@300;400;500&display=swap');

body {
    font-family: 'Anek Malayalam',sans-serif;
    background: linear-gradient(90deg, rgba(255, 113, 113, 1) 0%, rgba(245, 146, 0, 1) 35%, rgba(255, 248, 0, 1) 100%);
    overflow: hidden;
}

.wrapper {
    display: grid;
    place-items: center;
    text-align: center;
}

.title {
    font-size: 70px;
    margin: 20px auto 30px auto;
    color: white;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.cell {
    width: 150px;
    height: 150px;
    background: black;
    border: 1px solid #C779D0;
    cursor: pointer;
    line-height: 150px;
    font-size: 100px;
    font-family: sans-serif;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px;
}

.status {
    font-size: 70px;
    color: white;
    margin: 40px auto 20px auto;
}


.restart {
    padding: 10px;
    font-size: 45px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}
