@font-face {
    font-family: "PoppinsMedium";
    src: url("../fonts/Poppins-Medium.woff2");
    font-display: swap;
}

:root {
    --trebe-dark-blue: rgb(3, 31, 70);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "PoppinsMedium";
    color: var(--trebe-dark-blue);
}

body {
    overflow: hidden;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 10vh;
    padding: 1vh;
    padding-left: 2vw;
    padding-right: 2vw;
}

.control {
    align-self: center;
    display: flex;
    justify-content: end;
    gap: 1vw;
}

.btn {
    background-color: white;
    color: var(--trebe-dark-blue);
    border: 1px solid var(--trebe-dark-blue);
    border-radius: 0.375rem;
    cursor: pointer;
}

.control input {
    padding-left: 1vw;
    padding-right: 1vw;
}

.control select {
    padding: 0.4vw;
    outline: none;
}

.container {
    margin: 2vw;
    margin-top: 1vh;
    display: flex;
    flex-direction: row;
    gap: 1vw;
}

.simple-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 87vh;
    border: solid 1px var(--trebe-dark-blue);
    border-radius: 0.375rem;
}

.label {
    position: sticky;
    background-color: white;
    z-index: 999;
    padding: 7px;
    padding-left: 14px;
}

.text-scroller {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    font-size: 2rem;
    padding: 25px;
    padding-top: 35px;
    text-align: center;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-scroller::-webkit-scrollbar {
    display: none;
}