:root {
    font-size: 62.5%;
    font-family: 'JetBrains Mono', monospace;
    --main-color: #0d6efd;

    --non-expanded-drawer: 6rem;
    --expanded-drawer: 22rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font: inherit;
    list-style: none; */
}

body {
    min-height: 100vh;
    background-color: antiquewhite;
    font-size: 1.6rem;

}

button {
    all: unset;
}


.container {
    display: flex;
    min-height: 100vh;
}

/*  */
/* Drawer section */
/*  */

.drawer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 100vh;
    /* width: max-content; */
    width: var(--non-expanded-drawer);
    overflow: hidden;
    border-right-color: antiquewhite;
    border-right-width: .2rem;
    border-right-style: dashed;
    transition: width 0.5s ease-in, border-right-color 1s ease;
}

.drawer-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 1rem;
    pointer-events: none;
}

.drawer-card-clickable {
    pointer-events: auto;
}


img {
height: 4rem;
}

.drawer-image {
    filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}


.drawer-image:active {
    filter: drop-shadow(2.5px 2.5px 2px rgba(0, 0, 0, 0.2));

}


.drawer-title {
    color: #0d6efd00;
    margin-left: 2rem;
    font-size: 2rem;
    transition: color 1.4s ease;
    text-shadow: 0.125rem 0.125rem rgba(0, 0, 0, 0.2);
}

.drawer-title:active {
    text-shadow: 0rem 0rem rgba(0, 0, 0, 0.2);

}

.show-drawer-title {
    color: var(--main-color);
}


.extendo {
    width: var(--expanded-drawer);
}

/* individual drawer card */



/* Divider bar */

.divider-container {
    display: flex;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}

.divider-bar {
    border-width: .2rem;
    border-style: solid;
    border-color: #0d6efd10;
    width: var(--expanded-drawer);
    height: 1.5rem;
    border-radius: 1rem;
    background-color: transparent;
    transition: border-color 0.5s ease-in;
    box-shadow: .5rem .5rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2);
}

.divider-bar-fill {
    /* background-color: #0d6efd50; */
    border-color: #0d6efd;
}


/* MOUSE CURSOR EFFECT */

.mouse-pointer {
    cursor: pointer;
}



/*  */
/* HOVER EFFECTS */
/*  */




/*  */
/* Landing section */
/*  */

/* remember that to have children ignore pointer events (tap, scroll, click, hover), you
need to use pointer events: none, and then any children thereof will need
pointer events: auto */

.landing {
    position: absolute;
    top: 0;
    bottom: 0;
    min-height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding-left: 8.5rem;
    padding-right: 7rem;
    pointer-events: none;
}

.landing-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: .2rem solid #0d6efd;
    width: 50rem;
    min-width: 20rem;
    height: 22.5rem;
    border-radius: 5rem;
    color: #0d6efd;
    font-size: 6rem;
    font-weight: 700;
    pointer-events: auto;
    background-color: transparent;
    transition: background-color 0.2s ease-in,
    color 0.1s ease;
    box-shadow: .5rem .5rem 0.2rem 0.2rem rgba(0, 0, 0, 0.4),
    -.25rem -.25rem 0.125rem rgba(0, 0, 0, 0.4);
}

.landing-btn span {
    /* display: inline-block; */
    position: relative;
    transition: padding-right 0.25s ease-in;
}

.landing-btn span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    /* top: 0; */
    /* right: -7.5rem; */
    right: -5rem;
    transition: right 0.25s ease-in, opacity 0.2s ease-in;
}

.landing-btn:hover span {
    padding-right: 3rem;
}

.landing-btn:hover span:after {
    opacity: 1;
    right: -1.25rem;
}

.landing-btn:active {
    box-shadow: .25rem .25rem 0.2rem 0.2rem rgba(0, 0, 0, 0.4),
    -.125rem -.125rem 0.125rem rgba(0, 0, 0, 0.4);
    border-right: .2rem solid rgba(0, 0, 0, 0.2);
    border-bottom: .2rem solid rgba(0, 0, 0, 0.2);
}

.landing-btn:hover {
    background-color: #0d6efd;
    color: antiquewhite;
}

#signup,
#login {
    text-decoration: none;
}


/*  */
/* Logout section */
/*  */

.logout {
    height: 2rem;
    margin-left: auto;
    margin-top: 5rem;
    margin-right: 5rem;
}

.logout-btn {
    border: .2rem solid #0d6efd;
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    background-color: transparent;
    font-size: 2rem;
    color: #0d6efd;
    transition: background-color 0.2s ease,
    color 0.1s ease;
    box-shadow: .5rem .5rem 0.2rem rgba(0, 0, 0, 0.4),
    -.125rem -.125rem .2rem rgba(0, 0, 0, 0.4);
    text-align: center;
    
}

.logout-btn:hover {
    background-color: #0d6efd;
    color: antiquewhite;
}

.logout-btn:active {
    box-shadow: .25rem .25rem 0.2rem rgba(0, 0, 0, 0.4),
    -.125rem -.125rem .125rem rgba(0, 0, 0, 0.6);
}