/***************/
.isLanding {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
    overflow-x: hidden;
    /* border: 1px solid white; */
}
.hideLanding{
    opacity: 0;
    pointer-events: none;
}
.quibble-head{
    width: 50px;
    height: 50px;
    border: 1px solid black;
    border-radius: 5px;
    background-image: url('../images/quibblehead.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.splash {
    position: relative;
    text-align: center;
}
.splash h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-family: Array-Regular;
}
.splash h5{
    background: linear-gradient(
        rgba(255, 192, 203, 0.542), 
        rgba(65, 105, 225, 0.475)
    );
    box-shadow: 0px 3px 4px rgba(37, 124, 162, 0.88);
    color: rgb(208, 208, 208);
    color: wheat;
    text-shadow: 
        -1px -1px 1px royalblue,
        2px 2px 1px rgba(255, 192, 203, 0.6),
        -2px -4px 1px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 5px;
    font-size: 0.75rem;
    font-family: Satoshi-Medium;
}

.splash .btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ff0055;
    color: white;
    box-shadow: 
        0 0 10px #ff0055, 
        0 0 20px #ff0055, 
        0 0 30px #ff0055
    ;
    font-family: Satoshi-Medium;
}

.splash .btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 20px #ff0055,
        0 0 40px #ff0055
    ;
}

.splash .info-btn
{
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: #222;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.25;
    transition: all 0.2s ease;
    transform: scale(1);

    animation: emph 2.5s ease-in-out 0.01s infinite normal forwards;
}
@keyframes emph {
    0%{
        transform: scale(1) rotate(0);
        opacity: 0.25;
    } 
    50% {
        transform: scale(1.15) rotate(0);
        opacity: 1;
    }
    90% {
        transform: scale(1) rotate(0);
        opacity: 0.25;
    }
}

.splash .info-btn:hover {
    background: #555;
    transform: rotate(10deg);
}

/*____________________*/
.settings
{
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.21);
    box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.789);
    background-color: rgba(0, 0, 0, 0.88);
    transition: all 0.2s ease;
}
.settings button{
    width: 120px;
    height: 40px;
    border-radius: 25px;
    border-color: transparent;
    background-color: transparent;
    color: white;
    border-bottom: 1px solid #222;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease;
}
.settings button:hover,
.settings button:hover:active
{
    background-color: #222;
    transform: scale(1.2);
}
.levels{
    width: 50%;
    height: 234px;
    /* border: 1px solid silver; */
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: hidden;
    transition: height 0.3s ease;
}
.l-collapse{
    height: 0%;
    transition: height 0.3s ease;
}
#level-1:hover,
#level-1:hover:active
{
    color: yellowgreen;
}
#level-3:hover,
#level-3:hover:active
{
    color: royalblue;
}
#level-4:hover,
#level-4:hover:active
{
    color: goldenrod;
}
#level-goblin:hover,
#level-goblin:hover:active
{
    color: red;
}

/*____________________*/
.information
{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.21);
    box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.789);
    background-color: rgba(0, 0, 0, 0.88);
    opacity: 1;
    box-sizing: border-box;
    padding: 10px;
    overflow-y: scroll;
    font-family: Satoshi-Regular;
    scroll-behavior: smooth;
    transition: all 0.3s ease-in;
}
.info-hide{
    left: 100%;
    opacity: 0;
}
.information::-webkit-scrollbar{
    width: 0;
    height: 0;
}
.information button{
    top: 55px;
    padding: 5px;
    border-radius: 5px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    box-shadow: 2px 2px 4px goldenrod;
}
#info-start,
#info-close
{
    color: goldenrod;
    text-decoration: overline;
}
.information h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #2b2b2b;
    color: wheat;
    /* text-shadow: 1px 1px 1px gold; */
    /* border-left: 5px solid #e74c3c; */
    border-left: 5px solid sienna;
    padding-left: 0.5rem;
    font-family: Satoshi-Medium;
}

.information h4 {
    font-size: 1.2rem;
    color: #444;
    margin-top: 1rem;
}

.information p {
    margin: 1rem 0;
    font-size: 1rem;
}

.information ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.information ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.information em {
    font-style: italic;
    /* color: #c0392b; */
    color: skyblue;
    font-size: 1.1rem;
}

.information b {
    font-weight: bold;
    color: #2c3e50;
    color: orange;
}

.information hr {
    border: none;
    height: 1px;
    background: #ccc;
    margin: 2rem 0;
}

.information aside {
    margin-top: 1.5rem;
    background: #f0f8ff;
    background: rgba(160, 81, 45, 0.654);
    padding: 1rem;
    border-left: 4px solid #3498db;
    font-style: italic;
    color: #2c3e50;
    color: wheat;
    border-radius: 6px;
}