main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

table{
    width: 90%;
    height: 200px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--main-color);
    background-color: #155f82;
}

table tr td{
    padding: 10px;
}

h2, h3{
    font-size: 1.5rem;
}

@media(min-width: 800px){
    table{
        width: 50%;
    }
}