body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #0c67ae;
}
.vec{
    display: flex;
    justify-content: center;
}

#title {
    height: 150px;
    width: 360px;
    border: 3px solid #0c67ae;
    border-radius: 5px;
}

#titles{
    width: 120px;
    height: 120px;
}
.matt{
    width: 180px;
    height: 180px;
}

#board {
    width: 360px;
    height: 360px;
    background-color: lightblue;
    border: 3px solid #ae0c0c;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
}

#board img {
    width: 118px;
    height: 118px;
    border: 1px solid #0c67ae;
}

#modal {
    width: 40%;
    height: 300px;
    background: #DE5360;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Sofia';
}

#modal #message {
    color: #FDE1E3;
    margin: 0;
    font-size: 4rem;
}

.hide {
    display: none;
}
#modal #header {
    text-align: right;
    padding: 5px 10px;
}
#modal #header button {
    padding: 10px;
    border: 0px;
    background: #456990;
    color: #E4FDE1;
    cursor: pointer;
}