.material-symbols-outlined {
    font-size: 18px;
    font-variation-settings:
        'FILL'1,
        'wght'400,
        'GRAD'0,
        'opsz'24
}

p {
    margin: 0;
}

.navbar {
    height: 50px;
}

.words {
    display: flex;
    gap: .5rem;
    width: auto;
    height: calc(100vh - 60px);
    border: 2px dotted black;
    margin: 5px;
    padding: 5px;
}

.orglanguage {
    height: -webkit-fill-available;
    width: 100%;
    border: 3px solid black;
    padding: 5px 10px;
}

.tranlanguage {
    height: -webkit-fill-available;
    width: 50%;
    border: 3px solid black;
    padding: 5px 10px;
    display: none;
}

img {
    width: auto;
    height: 30px;
}

.single-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-line .left {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.single-line .center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.single-line .right {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1rem;
    text-align: right;
}

.form-select:focus {
    border-color: var(--bs-border-color);
    outline: 0;
    box-shadow: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .navbar {
        height: 80px;
    }

    .words {
        height: calc(100vh - 90px);
    }

    .single-line .left {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .single-line .center {
        position: absolute;
        top: 40px;
        left: 50%;
        right: 50%;
    }

    .single-line .right {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

@media (min-width: 319px) and (max-width: 767px) {
    .navbar {
        height: 120px;
    }

    .words {
        height: calc(100vh - 130px);
    }

    .single-line .left {
        width: 100%;
        justify-content: space-evenly;
    }

    .single-line .center {
        width: 100%;
        justify-content: space-evenly;
    }

    .single-line .right {
        width: 100%;
        justify-content: space-evenly;
    }
}