#wrapper {
    grid-template-rows: auto 1fr auto;
}

#mainArea {
    display: grid;
    overflow: hidden;
    grid-template-rows: 1fr auto auto auto 1fr;
    gap: 12px;
    margin: 12px auto;
    width: calc(100% - 12px);
    max-width: 480px;
}

#mainArea h1 {
    grid-row: 2;
    user-select: none;
}

#taInput {
    grid-row: 3;
    height: 400px;
}

#buttonsHolder {
    grid-row: 4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}

@media (max-height: 720px) {
    #taInput {
        height: 300px;
    }
}

@media (max-height: 620px) {
    #taInput {
        height: 200px;
    }
}

@media (max-height: 520px) {
    #taInput {
        height: 100px;
    }
}

@media (max-height: 420px) {
    #taInput {
        height: 60px;
    }
}

@media (max-width: 500px) {
    button.adl {
        min-width: 90px;
    }
}