﻿
.number-button {
    width: 60px;
    height: 42px;
    border-radius: 7px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 30px;
    font-family: sans-serif;
    border: 2px solid#175d72;
    box-shadow: 4px 4px 15px 4px rgba(0,0,0,0.2);
    color: #294381;
}

.number-button-selected {
    background-color: #cddc39;
}


    .number-button:hover {
        box-shadow: 0px 0px 50px 3px rgba(255,255,255, 0.43);
        background-color: #175072;
        cursor:pointer;
        color:white;
    }

#selectedNumber {
    grid-row: 4;
    width: 100px;
    height: 100px;
    border: 2px solid#175d72;
    border-radius: 50px;
    background-color: white;
    align-items: center;
    display: flex;
    justify-content: space-around;
    font-size: 60px;
    user-select: none;
    color: #294381;
    font-family: sans-serif;
}

.numbers-strip {
    width: 330px;
    height: 40px;
    grid-row: 8;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.numbers-strip-title {
    grid-row: 6;
    font-size: 32px;
    color: white;
    font-family: sans-serif;
}

.main-panel {
    display: grid;
    grid-template-rows: 70px 220px 40px 100px 80px 40px 10px auto;
    justify-items: center;
}