*{
    margin: 0;
    padding: 0;
}


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

header, section, footer {
    width:100vw;
    height:100vh;
}

nav{
    position: fixed;
    top: 25vh;
    right: 2vw;
}

ol {
    list-style-type: none;
}

nav ol {
    list-style-type: none;
}


nav a:link,
nav a:visited {
    display: inline-block;
    width: 2vw;
    height: 2vw;
    border: 0.2vw solid black;
    border-radius: 50%;
    background-color: aquamarine;
    margin-bottom: 2vh;
    text-decoration: none;
    color: black;
}


nav a:hover span {
    font-size: 1.2vw;
    right: 9vw;
    opacity: 1;
}

nav span {
    font-size: 2px;
    opacity: 0;
    position: relative;
    top: 0.2vw;
    right: 2vw;
    white-space: nowrap;
    transition: right 0.2s, opacity 0.2s;
}


h3{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1cm;
    text-align: center;
    margin-top: 2.5vw;
    padding:40vh;
}

.dp{
    background-color: #242038;
}

.sb{
    background-color: #725AC1;
}

.ti{
    background-color: #8D86C9;
}

.fg{
    background-color: #CAC4CE;
}

.l{
    background-color: #F7ECE1;
}

.t{
    background-color: #CFBAE1;
}

.lilac{
    background-color: #C59FC9;
}

.gunmetal{
    background-color: #292F36;
}

/* =======================================
   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
*/