/*-=-=-=-=-==-=-=-=-=CSS Reset=-=-=-=-=-=-=-=-=-=-=-=-*/

*{
    margin: 0;
    padding: 0;
}


/*=-=-=-=-=--=- CSS Mobile Display=-=-=-=-=-=-=-=-=-=-==-*/

@media screen and (max-width: 479px) {

    figure#mobile {
        width: 375px;
        height: 627px;
        margin: 2vh auto 0 auto;
    }

        h1{
            color: white;
            padding-top: 80%;
        }

        h2, h3, h4, h5 ,h6 {
            display: none;
        }
}

/* =-=-=-=-=-=-=-=-=CSS PHABLET Display =-=-=-=-=-=-=-=-=-*/ 

@media screen and (min-width: 480px) and (max-width: 767px){

    figure#phablet {
        width: 480px;
        height: 768px;
    }
    h2{
        color: black;
        padding-top: 70%;
    }

    h1, h3, h4, h5 ,h6 {
        display: none;
    }
}

/*=-=-=-=-=-=-original mac-screen size=-=--=-*/

@media screen and (min-width: 512px) and (max-width: 767px){

    figure#original-macintosh {
        width: 512px;
        height: 342px;
        margin: 2vh auto 0 auto;
    }
    h3{
        color: white;
        padding-top: 30%;
    }

    h1, h2, h4, h5 ,h6 {
        display: none;
    }

}

/* =-=-=-=-=-=-=-=-=-CSS Tablet Display =-=-=-=-=-=-=-=-=-=-=-=*/

@media screen and (min-width: 768px) and (max-width: 1365px){

    figure#tablet {
        width: 768px;
        height: 1024px;
        margin: 2vh auto 0 auto;
    }
    h4{
        color: white;
        padding-top: 60%;
    }

    h1, h2, h3, h5 ,h6 {
        display: none;
    }
}


/* -=-=-=-==-=-=-=-=-CSS laptop Display=-=-=-=-=-=-=-=-=-=-=-*/

@media screen and (min-width: 1366px) and (max-width: 1919px){

    figure#laptop {
        width: 1366px;
        height: 768px;
        margin: 2vh auto 0 auto;
    }
    h5{
        color: white;
        padding-top: 40%;
    }

    h1, h2, h3, h4 ,h6 {
        display: none;
    }
}


/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-CSS DESktop or Television=--=-=-=-=--=-=-=-=-=-*/

@media screen and (min-width: 1920px) {

    figure#desktop{
        width: 1920px;
        height: 1080px;
        margin: 2vh auto 0 auto;
    }
    h6{
        color: white;
        padding-top: 30%;
    }

    h1, h2, h3, h4 ,h5 {
        display: none;
    }
}

/*=-=-=-=-=-=-=-=-CSS color names=-=-=-=-=-=-=-=-=-=-=*/

.red{
    background-color: red;
}

.orange{
    background-color: orange;
}

.yellow {
    background-color: yellow;
}

.green {
    background-color: greenyellow;
}

.blue {
    background-color: blue;
}

.purple {
    background-color: purple;
}

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


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