*{
    margin: 0;
    padding: 0;
    font-size: 35pt;
}

@font-face {
    font-family: "Akira";
    src: url("../../../fonts/Akira Expanded Demo.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}


/* =-=-=-=-=-=-=CSS Classes =-=-=-=-=-=-=-=-*/

.start-hidden{
    display: none;
}


.button{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* =======================================
   WHITE CIRCLE BACK BUTTON (UNIVERSAL)
======================================= */

#navbar {
    position: fixed;
    bottom: 0.5rem;
    left: 0.5rem;
    z-index: 9999;
}

.back-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.back-btn-circle {
    width: 60px;
    height: 60px;

    border-radius: 50%;
    background-color: #ffffff;   
    border: 3px solid #ffffff;   

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

    overflow: hidden;            
    padding: 0;
    margin: 0;
    line-height: 0;              
    box-sizing: border-box;

    transition: transform 0.25s ease;
}

.nav-logo {
    display: block;
    width: 70%;
    height: 70%;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.back-btn-label {
    white-space: nowrap;
    color: #000000;              
    font-family: "Akira";

    font-size: 0;                 
    opacity: 0;
    transform: translateX(0);

    transition:
        font-size 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.back-btn:hover .back-btn-circle {
    transform: scale(1.05);
}

.back-btn:hover .back-btn-label {
    font-size: 0.4rem;
    opacity: 1;
    transform: translateX(4px);
}


/* 
  __  __  __   __
|  \/  | | | / /
| |\/| | | |/ /
| |  | | |   |
| |  | | |    \
|_|  |_| |_| \_\
                         M  K  S  T  U  D  I  O
*/