

#foglalas {
    font-family: 'Montserrat', sans-serif;

    font-weight: bold;
    color: var(--main-bg-color);
    background-color: var(--accent-teal);
    padding: 1rem 2rem;
    font-size: 3rem;
    border-radius: 5rem;
    text-decoration: none;
    margin: 3rem 0;
    transition: 0.3s ease-in;
}


#foglalas:hover {
    transform: scale(102%);
}



@media screen and (orientation:portrait) {



    #foglalas {
        font-size: 2rem;
        margin: 1rem 0;
    }


}

h2 {
    color: var(--Main-Text, #333);
    font-family: Noto Sans;
    font-size: 3rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

table {
    width: 90%;
}


tr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 5rem;
    align-items: center;
}


td:nth-child(odd) {
    margin-left: 1.5rem;
    text-align: left;
}


td:nth-child(even) {
    margin-right: 1.5rem;
    text-align: right;
}


tr:nth-child(odd) {
    background: var(--Secondary-Background, #F5F5F5);
}


td {
    color: var(--Main-Text, #333);
    font-family: Noto Sans;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}



@media screen and (orientation:portrait) {
    h2 {
        font-size: 1.8rem;
    }


    td {
        font-size: 1.4rem;
    }


    td {
        margin: 1rem;
        max-width: 40%;
    }



}