@font-face {
    font-family: Roboto;
    src: url("./assets/Roboto-Regular.ttf") format("truetype");
    font-display: swap;
}

:root {
    --background-color: #343B3D;
    --font-color: #01D424;
    --font-fam: Roboto;
}


body {
    background-color: var(--background-color);
    overflow: hidden;
}

a, p, span {
    font-family: var(--font-fam);
    color: var(--font-color);
    text-decoration: none;
}

.paletteSelectorText {
    cursor: pointer;
}

#paletteDisplay {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding-bottom: .2vw;
}

#paletteText{
    margin-bottom: 0;
}

#paletteSelectors {
    padding: 0;
    font-size: 24pt;
    user-select: none;
    -webkit-user-select: none;
}

#paletteHiddenInfo {
    display: none;
    border-color: var(--font-color);
    padding: .5vh;
    border-radius: .2vw;
    border-style: solid;
}

#paletteText:hover ~ #paletteHiddenInfo, #paletteSelectors:hover ~ #paletteHiddenInfo {
    display: inline-block;
}

#mainContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
    font-smooth: never;
    -webkit-font-smoothing: none;
}

#mainText{
    font-size: 12pt;
    margin-bottom: 3.5rem;
}

.subText {
    margin-top: .3rem;
    margin-bottom: .3rem;
    padding: 0;
    font-size: 8pt;
}

#socialButtons {
    display: flexbox;
    flex-direction: row;
}

.buttonContainer {
    display: inline;
    padding: 0;
    margin: .3vw;
    background-color: var(--font-color);
    border-radius: .8rem;
    width: 4rem;
    height: 2rem;
    cursor: pointer;
    border: none;
    white-space:nowrap;
}

.button{
    color: var(--background-color);
    justify-content: center;
    margin: 0;
    padding: 0;
}



#buttonSeperator{
    height: 1rem;
    flex-basis: 100%;
}

#fontButtonContainer{
    width: 8rem;
}

#fontButton{
    font-family: Roboto;
    font-weight: bold;
}


#quoteHolder {
    position: absolute;
    bottom: .3rem;
    text-align: center;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}

#quoteP {
    font-size: 12pt;
    font-style: italic;
}

#attrP {
    font-size: 10pt;
}

@media (orientation: landscape) {

    .buttonContainer {
        width: 5rem;
        height: 2rem;
    }

    #buttonSeperator{
        height: 0;
        flex-basis: 100%;
    }

    #mainText{
         margin-bottom: 1rem;
    }

}
