html {
    --color-one: #000000;
    --color-two: #ffffff;
    --color-three: #f4dd00;
    --color-four: #333333;
}
body {
    background-color: var(--color-one);
    color: var(--color-two);
    font-family: "Google Sans"
}
.title {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    place-items: center;
    font-family: "Mirano";
    font-weight: bold;
    font-size: 2em;
    color: var(--color-three);
    top: 0;
    left: 0;
    right: 0;
    width: 100dvw;
    height: 10dvh;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}
.palette {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
    width: 40dvw;
}
.container {
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 10dvh;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100dvw;
    height: 90dvh;
    overflow: hidden;
}
#left {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 40dvw;
}
#right {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 40dvw;
}
#left-text {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 10dvw;
}
#right-text {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 10dvw;
}
#left-text div {
    position: absolute;
    left: 0;
    display: flex;
    place-items: center;
    justify-content: space-evenly;
    text-align: right;
    width: 100%;
    color: var(--color-two);
}
#right-text div {
    position: absolute;
    left: 0;
    display: flex;
    place-items: center;
    justify-content: space-evenly;
    text-align: right;
    width: 100%;
    color: var(--color-two);
}
#left-text div:hover {
    background-color: var(--color-four);
}
#right-text div:hover {
    background-color: var(--color-four);
}
#left-text div:hover a {
    color: var(--color-three);
}
#right-text div:hover a {
    color: var(--color-three);
}
a {
    text-decoration: none;
    color: var(--color-two);
}