* {
    box-sizing: border-box;
}

.landing {
    background: url("../assets/camel.svg") no-repeat center center;
    background-size: 80%;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    z-index: 999;
}

.landing__title {
    z-index: 100;
    color: blueviolet;
    font-family: Garamond;
    font-size: 60px;
    margin-bottom: 2rem;
}

.landing__buttons {
    display: flex;
}

.landing__button {
    background-color: orange;
    font-size: 30px;
    color: azure;
    cursor: pointer;
    padding: 1rem;
    margin-bottom: 4rem;
    margin-right: 2rem;
    margin-left: 2rem;
}

.highest-number__button {
    flex-direction: row;
    background-color: orange;
    color: white;
    border-color: #fbcb71;
    border-width: 0.5rem;
    border-style: solid;
    border-radius: 1rem;
    z-index: 1000;
    cursor: pointer;
    position: relative;
}

.highest-number__button:hover {
    background-color: #fbcb71;
}

.landing__count {
    font-size: 30px;
    color: mediumseagreen;
    font-weight: 700;
}

.leaderboard {
    display: none;
    position: absolute;
    display: flex;
    align-items: end;
    width: 100vw;
    flex-direction: column;
    padding: 1rem;
    z-index: 998;
}

.leaderboard__players {
    width: 20rem;
}

.leaderboard ul {
    padding: 0;
    margin: 0;
    width: 25rem;
}

.camel {
    list-style: none;
    height: 4rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    background-color: #F8F0E3;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding-left: 1rem;
    padding-right: 1rem;
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(6, 1fr);
    transition: padding 0.25s ease;
}

.camel--selected {
    background-color: #d7962c;
}

.leaderboard li:hover {
    cursor: pointer;
    padding-left: 1.5rem;
    filter: brightness(95%);
}

.camel__name {
    font-weight: 600;
    font-size: 12pt;
    grid-area: 1 / 2 / 1 / 6;
    align-self: end;
}

.camel__picture-container {
    height: 2.5rem;
    width: 2.5rem;
    background-color: white;
    border-radius: 50%;
    grid-area: 1 / 1 / 3 / 1;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camel__picture {
    box-shadow:
        6px 0px, -6px 0px, 0px -6px, -6px 6px, 6px 6px, 12px -2px;
    height: 6px;
    width: 6px;
    margin-left: -3px;
}

.camel__stats {
    font-weight: 100;
    grid-area: 2 / 2 / 2 / 6;
    font-size: 10pt;
    margin-top: 0.25rem;
}

.camel__select {
    grid-area: 1 / 6 / 3 / 7;
    text-align: center;
    font-size: 15pt;
    font-weight: 100;
}

/* UI */
/*    */
/*    */
.ui {
    display: none;
    position: absolute;
    width: 24rem;
    height: 24rem;
    z-index: 999;
}

.dice {
    height: 12rem;
    width: 12rem;
    background: white;
    border-radius: 25%;
    margin: 1rem;
    text-align: center;
    line-height: 12rem;
    padding-left: 1rem;
}
