.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d9dde2
}

.content-container {
    display: flex;
    margin-top: 200px;
    margin-bottom: 50px;
} 

.content {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    width: 300px;
    margin: 0 auto;
    border: 1px solid #080808;
}

.resetBtn {
    width: 100%;
    font-size: 20px;
    padding: 10px 0;
    background-color: #E0E0E0;
    border-radius: 4px;
    border: 1px solid #080808;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.resetBtn:hover {
    border-color: #C8C8C8;
    color: #C8C8C8;
}

.item {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    border: 1px solid #080808;
    cursor: pointer;
    vertical-align: middle;
    transition: outline 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item:hover{
    outline: 0.05rem solid;
}

.winner {
    display: flex;
    justify-content: center;
    width: 800px;
    height: 600px;
        
    background-color: #ffffff;
    background-image: url(../images/winner.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.winner-title{
    font-size: 36px;
    margin-top: 50px;
}

.draw {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 600px;

    background-color: #ffffff;
    background-image: url(../images/draw.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.draw-title{
    font-size: 36px;
    margin-bottom: 100px;
}

