@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

/* Variables */
:root {
    /* Color Pallete */
    --white: #fff;
        --offset-white: #f8f8f8;
    --grey: #f0f0f0;
    --black: #252525;
        --offset-black: #25252580;
}

/* Essentials */
body {
    font-family: "Lexend Deca", sans-serif !important;
    font-size: 16px;
    background: var(--grey);
}

/* Dice Styling */
main {
    width: calc(100vw - 32px);
    height: 100vh;
    
    position: absolute;
    left: 0;
    top: 0;

    padding: 0 16px;

    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}

.die {
    position: relative;
    height: 100px;
    width: 100px;
    background-color: var(--white); /* Feel free to customize */
    border-radius: 8px;
    box-shadow: 0 0 16px 0 #00000010;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: transform 200ms cubic-bezier(.02,1.77,.65,1.66);
}

.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--black);
    border-radius: 100%;
    margin: calc(-1 * (15px/2));
}

/* Controls */
#controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;

    background: linear-gradient(0deg, #fff, #ffffff00);
}

nav {
    padding: 7px;
    background-color: var(--white); /* Feel free to customize */
    border-radius: 48px;
    box-shadow: 0 0 16px 0 #00000010;
}

    nav ul {
        list-style: none;
        padding-inline: 0;
        margin-block: 0;
    }

    nav button {
        color: var(--black);
        background: var(--white);
        border: 1px solid var(--white);

        font-size: 1em;
        font-family: "Lexend Deca", sans-serif !important;
        font-weight: 400;
        
        padding: 8px 16px;
        border-radius: 48px;
        cursor: pointer;
    }

        nav button:hover {
            border: 1px solid var(--offset-black);
            background: var(--offset-white);
        }

    h6 {
        color: var(--black);
        margin: 16px 0 24px 0;
    }