@font-face {
    font-family: 'creatodisplay';
    src: url(/pages/css-transitions/fonts/CreatoDisplay-Black.otf) format('truetype');
    }

@font-face {
        font-family: 'creatodisplaylight';
        src: url(/pages/css-transitions/fonts/CreatoDisplay-Light.otf) format('truetype');
        }

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

*{
    margin: 0;
    padding: 0;
}

p{
    text-align: center;
    font-family: "Akira";
    font-size: 2em;

}

h1, h2, h3, h4, h5, h6{
    display: inline-block;
    text-align: center;
    border-style: solid;
    border-color: pink;
    font-family: creatodisplaylight;
    font-size: 2em;
    border-width: 4px;
}

h2{
    border-color: aquamarine;
}

h3{
    border-color: purple;
}

h4{
    border-color: orange;
}
h5{
    border-color: blue;
}

h6{
    border-color: green;
}

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

#navbar {
    position: fixed;
    bottom: 1.5rem;
    left: 1.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: 1rem;
    opacity: 1;
    transform: translateX(4px);
}


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