@font-face {
    font-family: "Soleto XBold";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("css/fonts/Soleto-XBold.ttf?v=1") format("truetype");
}
/* Home Container */
.appContainer {
    overflow: hidden;
    text-decoration: none;
    font-family: "Soleto Regular";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
/* Footer Container */
.footerContainer{
    text-align: center;
    width: 100%;
    height: 130px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
}
.footerButtons{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerSocial{
    position: absolute;
    width: 100%;
}
.footerSocial a{
    font-size: 12pt;
    display: ruby;
    background-color: var(--ColorNormal);
    padding: 6px;
    border-radius: 5px 5px 0px 0px;
    color: var(--jdark);
}
.appButtons {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px;
}
.appButton {
    width: 45%;
    max-width: 160px;
    color: var(--jwhite);
    margin: 20px 10px;
    text-align: left;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Lucida Grande", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
}
.appButton.appButtonBlu {
    background-color: var(--jvantablack);
    transition: background-color 0.25s linear;
    box-shadow: 0px 0px 20px 0 var(--ColorNormal);
}
.appButton.appButtonBlu:hover {
    color:  var(--jvantablack);
    background-color: var(--ColorNormal);
}
.appButton i {
    width: 30%;
    text-align: center;
    font-size: 35px;
    margin-right: 7px;
}
.appButton .appButtonBigText {
    font-family: "Soleto Regular";
    font-weight: bold;
    font-size: 17px;
    text-transform: capitalize;
}
.appButton .appButtonTinyText {
    font-family: "Soleto Regular";
    font-weight: bold;
    font-size: 12px;
    text-transform: capitalize;
}
.appButtonSpan{
    font-family: "Soleto Regular";
    font-weight: bold;
    margin: unset;
}
/* Footer Container */