body{
    display: grid;
    grid-template-rows: auto 1fr 0fr!important;
}

#home-page, .container, .line{
    height: 100%;
}

.line{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 1rem;
}

.column{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left{
    justify-content: flex-end;
}

.right{
    justify-content: center;
    gap: 20px
}

.armony{
    margin-right: -120px;
    margin-left: -120px;
    width: auto;
    height: 100%;
}

footer{
    position: absolute;
    bottom: 15px; left: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .armony {
        max-width: 120%;
        height: auto;
    }
}

@media (max-width: 720px) {
    .line{grid-template-columns: 1fr;}
    .right{grid-row: 1/2}
    .armony{margin-right: 0;margin-left: 0;width: 100%;height: auto;}
}