:root {
    --color-lightmode: white;
    --color-darkmode: rgb(36, 37, 38);
    --text-fonts: "Roboto";
}

* {
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.light * {
    color: black;
}

.dark * {
    color: white;
}

body {
    width: 100lvw;
    height: 100lvh;
    overflow: hidden;
    font-family: var(--text-fonts);
}

#content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 100%;
    height: 100%;
}

#remi,
#rexmine {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    flex: 1 1 0px;
    height: 100%;
    transition: 0.5s;
    margin: 25px;
}

#background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: row;
    z-index: -1;
}

#background .light {
    width: 45%;
    height: 100%;
    background-color: var(--color-lightmode);
}

#background .dark {
    width: 45%;
    height: 100%;
    background-color: var(--color-darkmode);
}

.selected_left #background .light,
.selected_right #background .dark {
    width: calc(45% + 10px);
    transition: 0.5s;
}

.selected_right #background .light,
.selected_left #background .dark {
    width: calc(45% - 10px);
    transition: 0.5s;
}

#diagonal {
    background: linear-gradient(to bottom right, var(--color-lightmode) 50%, var(--color-darkmode) 50%);
    width: 10%;
    height: 100%;
}

img {
    width: 100%;
    height: auto;
    max-width: 512px;
    max-height: auto;
    border-radius: 50%;
}

.selected {
    transform: scale(1.1);
    transition: 0.5s;
}

h1 {
    text-align: center;
}

a {
    text-decoration: none;
}