* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background-color: #424a5a;
    font-family: sans-serif;
}

canvas {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.20);
}

.title {
    font-size: 42px;
    margin-bottom: 12px;
}

.status {
    width: 512px;
    height: 82px;
    margin-top: 12px;
    text-align: center;

    display: flex;
    justify-content: space-between;
}

.status p {
    font-size: 26px;
}

.status > div{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 250px;
    border: 1px solid #2F3640;
    background-color: rgba(50, 56, 65, 0.8);
}

