#eesti{
    width: 330px;
    height: 210px;
    border: 1pt solid grey;
    border-spacing: 0;/*расстояние между строками*/
    position: absolute;
    top: 80px;
    left: 350px
}

#eesti tr:nth-child(1) {  /*обращение к элементам по отдельности 1,2,3 */
    background-color: blue;
}
#eesti tr:nth-child(2) {
    background-color: black;
}
#eesti tr:nth-child(3) {
    background-color: white;
}

#rootsi {
    width: 330px;
    height: 210px;
    border: 1pt solid grey;
    border-spacing: 0; /*расстояние между строками*/
    position: absolute;
    top: 80px;
    left: 690px
}

/*1 строка 1 ячейка   tr- строка' td -ячейка*/
#rootsi tr:nth-child(1)  td:nth-child(1),
#rootsi tr:nth-child(3)  td:nth-child(1)
{
    background-color: blue;
    width: 28%;
}
#rootsi tr:nth-child(1)  td:nth-child(1),
#rootsi tr:nth-child(1)  td:nth-child(3),
#rootsi tr:nth-child(3)  td:nth-child(3) {
    background-color: blue;
}

#rootsi tr:nth-child(1)  td:nth-child(2),
#rootsi tr:nth-child(3)  td:nth-child(2) {
    background-color: gold;
    width: 13%;
}
#rootsi tr:nth-child(2){
    background-color: gold;
    height: 20%;
}


#mali{
    width: 330px;
    height: 210px;
    border: 1pt solid grey;
    border-spacing: 0;/*расстояние между строками*/
    position: absolute;
    top: 310px;
    left: 350px
}

#mali tr:nth-child(1) {  /*обращение к элементам по отдельности 1,2,3 */
    background-color: darkgreen;
}
#mali tr:nth-child(2) {
    background-color: goldenrod;
}
#mali tr:nth-child(3) {
    background-color: red;
}

#taani {
    width: 330px;
    height: 210px;
    border: 1pt solid grey;
    border-spacing: 0; /*расстояние между строками*/
}

/*1 строка 1 ячейка   tr- строка' td -ячейка*/
#taani tr:nth-child(1)  td:nth-child(1),
#taani tr:nth-child(3)  td:nth-child(1)
{
    background-color: red;
    width: 28%;
}
#taani tr:nth-child(1)  td:nth-child(1),
#taani tr:nth-child(1)  td:nth-child(3),
#taani tr:nth-child(3)  td:nth-child(3) {
    background-color: red;
}

#taani tr:nth-child(1)  td:nth-child(2),
#taani tr:nth-child(3)  td:nth-child(2) {
    background-color: white;
    width: 13%;
}
#taani tr:nth-child(2) {
    background-color: white;
    height: 20%
}

#leedu{
    width: 330px;
    height: 210px;
    border: 1pt solid grey;
    border-spacing: 0;/*расстояние между строками*/
}

#leedu tr:nth-child(1) {  /*обращение к элементам по отдельности 1,2,3 */
    background-color: gold;
}
#leedu tr:nth-child(2) {
    background-color: darkgreen;
}
#leedu tr:nth-child(3) {
    background-color: #c41e3a ;
}

