/**************************************************/
/**** Basic setup ****/
/**************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	  margin: 0;
	  padding: 0;
	  border: 0;
}

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 62.5%;
}

body {
    background-color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 100;
    color:#ffffff;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;  
}

html, body {
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

button {
    outline: none;
}

/**************************************************/
/**** FOOTER ****/
/**************************************************/

footer {
    background-color: #111111;
    width: 100%;
    height: 20rem;
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000;
}

.footer-container {
    max-width: 160rem; 
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-left,
.footer-right {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.footer-left p {
    padding: 0 3rem;
    text-align: center;
}

.footer-left p::before,
.footer-left p::after {
    content: "";
    background: #222222;
    width: 30rem;
    height: 1px; 
    display: block;
    margin: 4rem auto;
}

.footer-side {
    width: 6rem;
    margin: 0;
    border: 1px solid #222222;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.social-links {
    display: flex;
    list-style: none;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.social-links-item {
    background-color: #000000;
    height: 4rem;
    width: 4rem;
    margin: 0 2rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #222222;
}

.social-links-item:hover {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.social-links a {
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
    color:#ffffff;
}

.social-links a:active,
.social-links a:hover {
    color: white;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.social-icon {
    font-size: 2rem;
}

/**************************************************/
/**** LANDING PAGE CONTENT ****/
/**************************************************/

.landing__page__body__content {
    width: 100%;
    height: calc(100vh - 20rem);
    padding-bottom: 20rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.landing-page-nav-button-container-open,
.landing-page-nav-button-container-close {
    width: 100%;
    height: 10.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

/**************************************************/
/**** NAV MENU BARS ****/
/**************************************************/

.landing-page-nav-button-open,
.landing-page-nav-button-close {
    width: 6.5rem;
    height: 6.5rem;
    margin: 2rem 0 2rem 8rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.landing-page-nav-button-open {
    background-color: #000000;
}

.landing-page-nav-button-close {
    background-color: #222222
}

.bar1, 
.bar2, 
.bar3 {
    width: 3.5rem;
    height: .5rem;
    background-color: #ffffff;
    margin: .6rem 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.landing-page-nav-button-open .spin,
.landing-page-nav-button-close .spin {
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
}

.landing-page-nav-button-close .spin:hover {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

/**************************************************/
/**** SIDE NAV BAR OVERLAY ****/
/**************************************************/

.slide-nav-bar {
    width: 0;
    height: 100vh;
    background-color: rgb(0,0,0);
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    -webkit-transition: .75s;
    -o-transition: .75s;
    transition: .75s;
}

.slide-nav-bar--overlay {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-nav-bar--overlay a {
    color: white;
    margin: 2rem 2rem;
    font-size: 3rem;
    text-decoration: none;
    text-transform: uppercase;
}

.slide-nav-bar--overlay a:hover, 
.slide-nav-bar--overlay a:focus {
  color: #808080;
}

/**************************************************/
/**** CANVAS ****/
/**************************************************/

#canvas-animation {
    width: 100rem;
    height: 28vh;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    margin-bottom: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/**************************************************/
/**** LANDING PAGE ANIMATION ****/
/**************************************************/

.landing-page-animation {
    padding-top: 10.5rem;
    height: calc(100% - 10.5rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.landing-page-animation--text {
    font-size: 4rem;
    word-spacing: 3px;
    letter-spacing: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}

/**************************************************/
/**** MAIN SITE NAV BAR ****/
/**************************************************/

.main-site-nav {
    height: 100%;
    width: 15rem;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    overflow-x: hidden;
}

.main-site-nav-list {
    height: calc(100% - 6rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    text-align: left;
    padding-top: 6rem;
}

.main-site-nav-list-items {
    margin: 1rem 0;
}

.main-site-nav-list a {
    color: white;
    text-decoration: none;
    margin: 2rem 2rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.main-site-nav-list a:hover, 
.main-site-nav-list a:focus {
  color: #808080;
}

/**************************************************/
/**** LOGO ****/
/**************************************************/

.logo {
    font-size:  3rem;
    color: #ffffff;
    width: 27rem;
    background: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: slidedown ease-out 1s;
    animation: slidedown ease-out 1s;
}

@keyframes slidedown {
    0% {
        opacity: 0; 
        -webkit-transform: translateY(-10rem); 
                transform: translateY(-10rem);
    }

    100% { /* final position */
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);        
    }
}

@-webkit-keyframes slidedown {
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-10rem); 
                transform: translateY(-10rem);
    }

    100% { /* final position */
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);        
    }
}

.logo a {
    text-decoration: none;
    padding: 2rem;
    background: #000000;
} 

.logo a:link,
.logo a:visited {
    color: #ffffff;
}

.logo:hover, 
.logo:focus {
  color: #000000;

}

.logo a:hover, 
.logo a:focus {
  color: #000000;
  background: #ffffff;
}

/**************************************************/
/**** MAIN CONTENT ****/
/**************************************************/

.body__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
    padding-bottom: 20rem;
}

.main-content {
    margin-left: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/**************************************************/
/**** ABOUT CONTENT ****/
/**************************************************/

.main-content-about {
    margin: 2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.main-content-about-para__container {
    height: auto;
    margin-left: 10%;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: margin-left 1s;
    -o-transition: margin-left 1s;
    transition: margin-left 1s;
    line-height: 1.4;
}

.main-content-about-para,
.main-content-about-page-animation--text {
    max-width: 138.8rem;
    margin: 2rem 0;
    font-size: 2rem;
}

.main-content-about__skills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: margin-left 1s;
    -o-transition: margin-left 1s;
    transition: margin-left 1s;
    -webkit-animation: 4s skillsDisplay ease-in; 
    -moz-animation: 4s skillsDisplay ease-in; 
    -ms-animation: 4s skillsDisplay ease-in; 
    -o-animation: 4s skillsDisplay ease-in; 
        animation: 4s skillsDisplay ease-in;   
}

@keyframes skillsDisplay {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes skillsDisplay {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-webkit-keyframes skillsDisplay {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-ms-keyframes skillsDisplay {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-o-keyframes skillsDisplay {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

.main-content-about__skills__container {
    height: 16rem;
    background-color: #000000;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-content-about__skills__container li {
    margin: 1rem;
}

.main-content-about__skills__h2 {
    max-width: 120rem;
    letter-spacing: 2px;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.main-content-about-page-animation--text {
    margin-top: 5%;
    margin-left: 10%;
}

.blinking-cursor {
    margin-left: -2.7rem;
    font-weight: 100;
    font-size: 3rem;
    color: #ffffff;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;   
}

@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-moz-keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-webkit-keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-ms-keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

@-o-keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #ffffff;
    }
}

/**************************************************/
/**** RESUME CONTENT ****/
/**************************************************/

#iframepdf {
    display: block;
}

#iframepdf-mobile {
    display: none;
}

#iframepdf,
#iframepdf-mobile {
    width: 100%;
    min-height: 100vh;
}

/**************************************************/
/**** PORTFOLIO CONTENT ****/
/**************************************************/

.main-content-portfolio  {
    margin: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main-content-portfolio--projects--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-content-portfolio--projects--text {
    margin-bottom: 4rem;
}

.main-content-portfolio--projects--text,
.main-content-portfolio--udemy--projects--text {
    font-weight: 100;
    letter-spacing: 2px;
    font-size: 4rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.main-content-portfolio__sites {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    width: 100%;
}

.main-content-portfolio__sites--divinationrecordings,
.main-content-portfolio__sites--neptunianinfluence,
.main-content-portfolio__sites--adultkarate,
.main-content-portfolio__sites--javascript-rpg {
    margin: 2rem;
    position: relative;
}

.main-content-portfolio--images {
    width: 100%;
}

.portfolio-link-details-bio {
    margin: 2rem;
    line-height: 1.7;
    letter-spacing: 1px;
    word-spacing: 2px;
}

/**************************************************/
/**** PORTFOLIO CONTENT OVERLAY ****/
/**************************************************/

.main-content-portfolio__sites--overlay {
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-color: #000000;
    opacity: .9;
    bottom: 100%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.main-content-portfolio__sites--divinationrecordings:hover .main-content-portfolio__sites--overlay,
.main-content-portfolio__sites--neptunianinfluence:hover .main-content-portfolio__sites--overlay,
.main-content-portfolio__sites--adultkarate:hover .main-content-portfolio__sites--overlay,
.main-content-portfolio__sites--javascript-rpg:hover .main-content-portfolio__sites--overlay {
    height: 100%;
    bottom: 0;
}

.main-content-portfolio__sites--overlay--text h2 {
    text-transform: uppercase;
    position: absolute;
    font-weight: 100;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center; 
}

.portfolio-btn {
    width: auto;
    height: auto;
    background: none;
    color: #ffffff;
    text-align: center;  
    font-size: 2rem;
    padding: 1rem 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.overlay-close-btn {
    width: auto;
    height: auto;
    background: none;
    text-align: center;  
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.portfolio-btn:hover,
.overlay-close-btn:hover {
    background-color: #ffffff;
    color: #000000;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.main-content-portfolio--overlay {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 10000;
    height: 100%;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-content-portfolio--overlay--holder {
    position: relative;
    width: 80rem;
    background-color: #000000;
    height: 80%;
    margin-left: 15rem;
}

.main-content-portfolio--overlay--content {
    margin-top: 7rem;
}

.main-content-portfolio--overlay--content img {
    width: 100%;
    height: auto;
}

.portfolio-link-details-url {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio-link-details-url a {
    margin: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
}

.portfolio-link-details-url a:hover {
    color: #808080;
}

.overlay-close-btn-bar1,
.overlay-close-btn-bar2 {
    width: 3.5rem;
    height: .5rem;
    background-color: #ffffff;
    margin: .6rem 0;
}

.overlay-close-details-btn:hover {
    background-color: #ffffff;
    color: #000000;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.overlay-close-btn-bar1 {
    -webkit-transform: rotate(-45deg) translate(-3px, 4px);
    -ms-transform: rotate(-45deg) translate(-3px, 4px);
    transform: rotate(-45deg) translate(-3px, 4px);
}

.overlay-close-btn-bar2 {
    -webkit-transform: rotate(45deg) translate(-3px, -5px);
    -ms-transform: rotate(45deg) translate(-3px, -5px);
    transform: rotate(45deg) translate(-3px, -5px);
}

/**************************************************/
/**** PORTFOLIO SLIDESHOW ****/
/**************************************************/

.main-content-portfolio--overlay--slideshow-container {
    top: 7rem;
    max-width: 80rem;
    position: relative;
}

/* Hide the images by default */
.slideShowSlide {
    display: none;
}

.slideShowSlide img {
    width: 100%
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -2.2rem;
    padding: 1.6rem;
    color: #ffffff;
    font-weight: 100;
    font-size: 3rem;
    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.numbertext {
    color: #ffffff;
    font-size: 1.2rem;
    padding: .8rem 1.2rem;
    position: absolute;
    top: 0;
}

/* Fading animation */
.fadeAnimation {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/**************************************************/
/**** PORTFOLIO UDEMY PROJECTS ****/
/**************************************************/

.main-content-portfolio--udemy--projects--text {
    margin-bottom: 6rem;
}

#udemy--javascript--projects--text {
    margin-top: 6rem;
    margin-bottom: 3rem;
}

#udemy-portfolio-icon img {
    height: 4rem;
    margin: 2rem;
}

.udemy-portfolio-projects-lists-container {
    background-color: #000000;
}

.udemy-portfolio-projects {
    list-style: none;
    overflow: hidden;
    text-transform: uppercase;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1 fr 1fr;
    grid-template-rows: repeat(2, 1fr);
}

.udemy-portfolio-projects-links {
    position: relative;
    padding: 6rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.udemy-portfolio-projects-links--images {
    width: 10rem;
}

.udemy-portfolio-projects-links:hover {
    opacity: .7;
}

.udemy-portfolio__sites--overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    background-color: #222222;
    width: 0;
    opacity: .9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;

}

.udemy-portfolio__sites--overlay p {
    margin-top: 3rem;
    font-size: 2rem;
}

#udemy-projects-links-1:hover .udemy-portfolio__sites--overlay,
#udemy-projects-links-2:hover .udemy-portfolio__sites--overlay,
#udemy-projects-links-3:hover .udemy-portfolio__sites--overlay,
#udemy-projects-links-4:hover .udemy-portfolio__sites--overlay {
    width: 100%;
}

.udemy-portfolio-btn {
    width: auto;
    height: auto;
    background: #000000;
    color: #ffffff;
    text-align: center;  
    font-size: 2rem;
    padding: 1rem 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.udemy-portfolio-btn:hover {
    background: #ffffff;
    color: black;
}

.main-content-portfolio__class-projects {
    margin: 4rem 2rem 2rem 2rem;
}

.udemy-javascript-portfolio-projects {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.udemy-javascript-portfolio-projects-iframe {
    max-width: 100rem;
    width: 100rem;
    height: 50rem;
    margin: 3rem 0;
}

.udemy-javascript-portfolio-projects-iframe  iframe {
    width: 100%;
    height: 100%
}

#press a {
    text-decoration: none;
    color: #808080;
}

/**************************************************/
/**** HOBBIES SECTION ****/
/**************************************************/

.audio-h2-container,
.video-h2-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.audio-h2-container {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 2rem;
}

.video-h2-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 2rem;
}

.main-content-hobbies-h2 {
    position: relative;
    font-size: 4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 100;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ffffff;
}

#audio-h2 {
    -webkit-animation: audio-h2-animation ease-out 1s;
    animation: audio-h2-animation ease-out 1s;
}

@-webkit-keyframes audio-h2-animation {
  0%    {right: 100%; top:0; border: none;}
  99%   {right: 1%; top:0; border: none;}
  100%  {right: 0; top:0;}
}

@keyframes audio-h2-animation {
  0%    {right: 100%; top:0; border: none;}
  99%   {right: 1%; top:0; border: none;}
  100%  {right: 0; top:0;}

}

#video-h2 {
    margin-top: 2rem;
    -webkit-animation: video-h2-animation ease-out 1s;
    animation: video-h2-animation ease-out 1s;
}

@-webkit-keyframes video-h2-animation {
  0%    {left: 100%; top:0; border:none;}
  100%  {left: 0; top:0;}
}

@keyframes video-h2-animation {
  0%    {left: 100%; top:0; border:none;}
  100%  {left: 0; top:0;}
}

.main-content-hobbies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 4rem;
}

.main-content-hobbies--dj-section {
    margin: 2rem 2rem 3rem 2rem;
}

.main-content-hobbies--audio-section {
    margin: 3rem 2rem 2rem 2rem;
}

.main-content-hobbies--video-section {
    margin: 3rem 2rem 2rem 2rem
}

.main-content-hobbies--dj-section,
.main-content-hobbies--audio-section,
.main-content-hobbies--video-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #000000;
}

.main-content-hobbies--dj-section--bio,
.main-content-hobbies--audio-section--bio,
.main-content-hobbies--video-section--bio {
    width: 50%;
    margin: 4rem;
    border: 1px solid #222222;
    padding: 4rem;
}

.main-content-hobbies--video-section--bio {
        width: 100%;
}

.main-content-hobbies--dj-section--bio,
.main-content-hobbies--audio-section--bio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-content-hobbies--dj-section--bio-para,
.main-content-hobbies--audio-section--bio-para {
    margin: 1rem 0;
    line-height: 1.4;
}

.main-content-hobbies--video-section--bio-para {
    margin: 1rem 0 3rem 0;
    line-height: 1.4;
}

.main-content-hobbies--dj-section--sc-player,
.main-content-hobbies--auio-section--audio-player {
    width: 50%;
    margin: 4rem;
    border: 1px solid #222222;
    padding: 4rem;
}
 
.main-content-hobbies--dj-section--sc-player iframe {
    width: 100%;
    height: 40rem;
}

.main-content-hobbies--auio-section--audio-player audio,
.main-content-hobbies--dj-section--sc-player iframe {
    margin-bottom: 2rem;
}

.main-content-hobbies--hr {
    margin-bottom: 3rem;
}

.main-content-hobbies--video-section--bio-list {
    list-style: none;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1 fr 1fr;
    grid-template-rows: repeat(2, 1fr);
}

.main-content-hobbies--video-section--bio-list-item {
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-content-hobbies--video-section--bio-list-item a {
    text-decoration: none;
    font-size: 2rem;
    max-width: 30rem;
}

.main-content-hobbies--video-section--bio-list-item-img {
    width: 100%;
}

.main-content-hobbies--video-section--bio-list-item a:link,
.main-content-hobbies--video-section--bio-list-item a:visited {
    color: white;
}

.main-content-hobbies--video-section--bio-list-item a:hover,
.main-content-hobbies--video-section--bio-list-item a:active {
    color: #808080;;
}

/**************************************************/
/**** MEDIA QUERIES ****/
/**************************************************/

@media only screen and (max-width: 1600px) { 

    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 112.83rem;
    } 
}

@media only screen and (max-width: 1536px) { 

    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 107.64rem;
    } 
}

@media only screen and (max-width: 1440px) {
    footer {
        height: 18rem;
    }

    .landing__page__body__content {
        height: calc(100vh - 18rem);
        padding-bottom: 18rem;
    }

    .body__content {
        height: calc(100% - 18rem);
        padding-bottom: 18rem;
    }

    .slide-nav-bar--overlay a {
        margin: 1rem 2rem;
        font-size: 2rem;
    }

    .landing-page-animation {
        font-size: 3rem;
    }

    .landing-page-animation--text {
        font-size: 3.5rem;
    }

    #canvas-animation {
        width: 53%;
    }

    .main-content-portfolio--overlay--holder {
        max-width: 42%;
        height: auto;
    }

    .portfolio-btn,
    .udemy-portfolio-btn {
        font-size: 1.25rem;
    }

    .udemy-javascript-portfolio-projects-iframe {
        max-width: 80rem;
        width: 80rem;
        height: 40rem;
        margin: 2rem 0;
    }

    .main-content-portfolio--projects--text, 
    .main-content-portfolio--udemy--projects--text,
    .main-content-hobbies-h2 {
        font-size: 3rem;
    }

    .main-content-portfolio__sites--overlay--text,
    .udemy-portfolio__sites--overlay p {
        font-size: 1.25rem;
    }

    .portfolio-link-details-url a {
        font-size: 1.75rem;
        margin: .75rem;
    }

    .portfolio-link-details-bio {
        font-size: 1.5rem;
        line-height: 1.6;
        margin: 1.5rem 1.75rem 1.75rem 1.75rem;
    }

    .main-content-portfolio,
    .main-content-hobbies {
        margin: 2rem;
    }

    .main-content-portfolio--projects--text {
        margin-bottom: 2rem;
    }

    .main-content-portfolio__class-projects {
        margin-top: 2rem;
    }

    .main-content-portfolio--udemy--projects--text {
        margin-bottom: 4rem;
    }

    .udemy-portfolio-projects-links {
        padding: 4rem 0;
    }

    .udemy-portfolio-projects-links--images {
        width: 8rem;
    }

    .udemy--javascript--projects--text {
        margin: 4rem 2rem 2rem 2rem;
    }

    #udemy--javascript--projects--text {
        margin-top: 4rem;
        margin-bottom: 2rem;
    }

    .main-content-about__skills__h2 {
        font-size: 3rem;
    }

    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 99.88rem;
    }    
}

@media only screen and (max-width: 1366px) {

    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 93.88rem;
    }  
    
    .landing-page-animation--text {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 1280px) {

    .landing-page-animation--text {
        font-size: 2.75rem;
    }

    .main-content-about__skills__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .udemy-javascript-portfolio-projects-iframe {
        max-width: 70rem;
        width: 70rem;
    }

    .main-content-portfolio--projects--text, 
    .main-content-portfolio--udemy--projects--text,
    .main-content-hobbies-h2 {
        font-size: 2.5rem;
    }

    .main-content-portfolio__sites--overlay--text,
    .udemy-portfolio__sites--overlay p {
        font-size: 1rem;
    }

    .portfolio-btn,
    .udemy-portfolio-btn {
        font-size: 1rem;
    }

    .portfolio-link-details-url a {
        font-size: 1.5rem;
        margin: .75rem;
    }

    .portfolio-link-details-bio {
        font-size: 1.25rem;
        line-height: 1.5;
        margin: 1.25rem 1.5rem 1.25rem 1.5rem;
    }

    .main-content-about__skills__h2 {   
        font-size: 2.5rem;
    }

    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 86.91rem;
    }  
}

@media only screen and (max-width: 1024px) {

    .landing-page-animation--text {
        font-size: 2.5rem;
    }

    #canvas-animation {
        height: 25vh;  
    }

    .social-links-item {
        margin: 0 1rem;
    }

    .logo {
        font-size: 2.5rem;
        width: 22rem;
    }

    .logo a {
        padding: 1rem;
    } 

    .udemy-javascript-portfolio-projects-iframe {
        max-width: 60rem;
        width: 60rem;
        margin: 1rem 0;
    }

    .main-content-portfolio--projects--text, 
    .main-content-portfolio--udemy--projects--text,
    .main-content-hobbies-h2 {
        font-size: 2.25rem;
    }

    .main-content-portfolio__sites {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .main-content-portfolio,
    .main-content-hobbies {
        margin: 1rem;
    }

    .main-content-hobbies--dj-section,
    .main-content-hobbies--audio-section,
    .main-content-hobbies--video-section {
        margin: 1rem;
    }

    .main-content-portfolio--projects--text {
        margin-bottom: 1rem;
    }

    .main-content-portfolio__class-projects {
        margin-top: 1rem;
    }

    .main-content-portfolio--udemy--projects--text {
        margin-bottom: 2rem;
    }

    .udemy-portfolio-projects-links {
        padding: 3rem 0;
    }

    .udemy-portfolio-projects-links--images {
        width: 8rem;
    }

    .udemy--javascript--projects--text {
        margin-top: 3rem 0 1rem 0;
    }

    .main-content-portfolio__sites--divinationrecordings,
    .main-content-portfolio__sites--neptunianinfluence,
    .main-content-portfolio__sites--adultkarate,
    .main-content-portfolio__sites--javascript-rpg {
        margin: 1rem;
    }

    .main-content-portfolio__class-projects {
        margin: 1rem;
    }

    .main-content-about__skills__h2 {
        font-size: 2.25rem;
    }

    .main-content-portfolio--overlay--holder {
        max-width: 60%;
    }

    #udemy--javascript--projects--text {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .audio-h2-container {
        margin-right: 1rem;
    }

    .video-h2-container {
        margin-left: 1rem;
    }

    .main-content-hobbies--dj-section--sc-player, 
    .main-content-hobbies--auio-section--audio-player,
    .main-content-hobbies--dj-section--bio, 
    .main-content-hobbies--audio-section--bio,
    .main-content-hobbies--video-section--bio {
        padding: 2rem;
        margin: 2rem;
    }

    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 66.18rem;
    }  

}

@media only screen and (max-width: 1010px) {

    #iframepdf {
        display: none;
    }

    #iframepdf-mobile {
        display: block;
    }
}

@media only screen and (max-width: 993px) { 

    footer {
        height: 16rem;
    }

    .landing__page__body__content {
        height: calc(100vh - 16rem);
        padding-bottom: 16rem;
    }

    .landing-page-animation--text {
        font-size: 2.25rem;
    }

    .body__content {
        height: calc(100% - 16rem);
        padding-bottom: 16rem;
    }

    .footer-left p {
        padding: 0;
        text-align: center;
    }

    .footer-left p::before,
    .footer-left p::after {
        width: 20rem;
        margin: 2rem auto;
    }

    .landing-page-animation {
        font-size: 2.5rem;
    }

    .udemy-javascript-portfolio-projects-iframe {
        max-width: 50rem;
        width: 50rem;
    }

    .udemy-portfolio-projects-links--images {
        width: 7rem;
    }
}

@media only screen and (max-width: 850px) {
    .udemy-javascript-portfolio-projects-iframe {
        max-width: 45rem;
        width: 45rem;
    }

    .landing-page-animation--text {
        font-size: 2.05rem;
    }
}

@media only screen and (max-width: 768px) {

    .footer-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .social-links-item {
        height: 3rem;
        width: 3rem;
        margin: 0 1rem;
    }

    .social-icon {
        font-size: 1.25rem;
    }

    .landing-page-nav-button-open,
    .landing-page-nav-button-close {
        margin: 2rem 0 2rem 2rem;
    }

    .landing-page-animation--text {
        font-size: 1.9rem;
    }

    #canvas-animation {
        width: 80%;
        height: 20vh;  
    }

    .main-content-about-para,
    .main-content-about-page-animation--text {
        font-size: 1.75rem;
    }

    .main-content-about-para__container {
        margin-bottom: 1rem;
    }

    .blinking-cursor {
        margin-left: -1.25rem;
        font-size: 1.75rem;
    }

    .logo {
        font-size: 2rem;
        width: 17rem;
    }

    .udemy-javascript-portfolio-projects-iframe {
        max-width: 40rem;
        width: 40rem;
    }

    .main-content-portfolio--projects--text, 
    .main-content-portfolio--udemy--projects--text,
    .main-content-hobbies-h2 {
        font-size: 2rem;
    }

    .main-content-about__skills__h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .main-content-about__skills__container {
        height: 8rem;
    }

    .main-content-about-page-animation--text,
    .main-content-about-para {
        margin: 1rem 0;
    }

    .udemy-portfolio-projects-links {
        padding: 2rem 0;
    }

    .main-content-hobbies--dj-section, 
    .main-content-hobbies--audio-section  {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-content-hobbies--dj-section--bio, 
    .main-content-hobbies--audio-section--bio,
    .main-content-hobbies--dj-section--sc-player,
    .main-content-hobbies--auio-section--audio-player,
    .main-content-hobbies--video-section--bio {
        width: auto;
        margin: 1rem;
        padding: 1rem;
    }

    .main-content-hobbies--auio-section--audio-player audio {
        width: 100%;
    }

    .main-content-hobbies-h2 {
        margin: 1rem 0;
    }

    .main-content-about {
        margin: 1rem;
    }

    .main-content-hobbies--dj-section, 
    .main-content-hobbies--audio-section,
    .main-content-hobbies,
    .main-content-portfolio,
    .main-content-portfolio__sites--divinationrecordings, 
    .main-content-portfolio__sites--neptunianinfluence,
    .main-content-portfolio__sites--adultkarate, 
    .main-content-portfolio__sites--javascript-rpg,
    .main-content-portfolio__class-projects,
    .main-content-hobbies--video-section {
        margin: .5rem;
    }

    .main-content-portfolio--projects--text {
        margin-bottom: .5rem;
    }

    .main-content-portfolio--udemy--projects--text {
        margin-bottom: 1rem;
    }

    .audio-h2-container {
        margin-right: .5rem;
    }

    .video-h2-container {
        margin-left: .5rem;
    }

    .main-content-about-para__container {
        margin-left: 0;
    }
    
    .main-content-about-para,
    .main-content-about-page-animation--text {
        max-width: 100%;
    }

    #video-h2 {
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 658px) { 
    .udemy-javascript-portfolio-projects-iframe {
        max-width: 90%;
        width: 90%;
    }
}

@media only screen and (max-width: 599px) { 

    body {
        font-size: 1.1rem;
    }

    footer {
        height: 14rem;
    }

    .landing__page__body__content {
        height: calc(100vh - 14rem);
        padding-bottom: 14rem;
    }

    .body__content {
        height: calc(100% - 14rem);
        padding-bottom: 14rem;
    }

    .landing-page-nav-button-open,
    .landing-page-nav-button-close {
        width: 5.5rem;
        height: 5.5rem;
        margin: 4rem 0 2rem 1rem;
    }


    .landing-page-animation--text {
        font-size: 1.5rem;
    }

    .bar1, 
    .bar2, 
    .bar3 {
        width: 3.5rem;
        height: .5rem;
    }

    .main-site-nav {
        width: 18%;
    }

    .main-site-nav-list a {
        margin: .75rem .75rem;
        font-size: 1.25rem;
    }

    .main-content,
    .main-content-portfolio--overlay--holder {
        margin-left: 18%;
    }

    .main-content-about {
        margin: 1rem;
    }

    .main-content-about__skills,
    .main-content-about-page-animation--text {
        margin-left: 0;
    }

    .main-content-about-para,
    .main-content-about-page-animation--text {
        font-size: 1.25rem;
    }

    .logo {
        font-size: 1.5rem;
        width: 13rem;
        margin-bottom: .5rem;
    }

    .logo a {
        padding: 1rem;
    } 

    .main-content-portfolio,
    .main-content-hobbies {
        margin: .5rem;
    }

    .main-content-portfolio--projects--text, 
    .main-content-portfolio--udemy--projects--text,
    .main-content-hobbies-h2 {
        font-size: 1.5rem;
    }

    .main-content-about__skills__h2 {
        font-size: 1.5rem;
    }

    #udemy-portfolio-icon img {
        height: 2rem;
    }

    .udemy-portfolio-projects-links--images {
        width: 4rem;
    }

    .main-content-portfolio__sites--overlay--text h2 {
        font-size: 1.1rem;
    }

    .udemy-portfolio__sites--overlay p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: .5rem;
        margin: .25rem;
        text-align: center;
    }

    .portfolio-btn,
    .udemy-portfolio-btn {
        font-size: .5rem;
        padding: .25rem .25rem;
    }

    .portfolio-link-details-url a {
        font-size: 1rem;
        margin: .5rem;
    }

    .portfolio-link-details-bio {
        font-size: 1rem;
        line-height: 1.4;
        margin: 1rem 1rem 1rem 1rem;
    }

    .overlay-close-btn {
        padding: .25rem;
    }

    .overlay-close-btn-bar1,
    .overlay-close-btn-bar2 {
        width: 2.5rem;
        margin: .6rem 0;
    }

    .prev, .next {
        font-size: 1.6rem;
    }

    .numbertext {
        font-size: .9rem;
        padding: .4rem 1.6rem;
    }

    .main-content-about__skills__container li {
        margin: .5rem;
    }

    .blinking-cursor {
        margin-left: -1rem;
        font-size: 1.5rem;
    }

    .main-content-about-para__container,
    .main-content-hobbies--dj-section--bio-para,
    .main-content-hobbies--audio-section--bio-para,
    .main-content-hobbies--video-section--bio-para {
        line-height: 1.3;
    }

    .footer-left p::before,
    .footer-left p::after {
        width: 12rem;
        margin: 1rem auto;
    }

    .footer-side {
        width: 3rem;
    }
}

@media only screen and (max-width: 500px) {

    .main-content-portfolio--projects--text, 
    .main-content-portfolio--udemy--projects--text,
    .main-content-hobbies-h2 {
        font-size: 1.25rem;
    }

    .main-content-about__skills__h2 {
        font-size: 1.25rem;
    }

    .main-site-nav-list a {
        margin: .75rem .75rem;
        font-size: 1rem;
    }

    .main-content-portfolio--projects--text {
        margin: 1rem 0 .5rem 0;
    }
}

@media only screen and (max-width: 411px) {

    .landing-page-animation--text {
        font-size: 1.25rem;
    }

    .logo {
        font-size: 1.25rem;
        width: 11rem;
        margin-bottom: .75rem;
    }

    .logo a {
        padding: .75rem;
    }

    .main-site-nav-list a {
        margin: .5rem .5rem;
        font-size: .9rem;
    }

    .udemy-portfolio__sites--overlay p {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .portfolio-link-details-url a {
        font-size: .8rem;
    }

    #audio-h2 {
    -webkit-animation: none;
        animation: none;
    }
    #video-h2 {
    -webkit-animation: none;
        animation: none;
    }
}

@media only screen and (max-width: 323px) {

    .landing-page-animation--text {
        font-size: 1.05rem;
    }

    .social-links-item {
        height: 2.5rem;
        width: 2.5rem;
        margin: 0 1rem;
    }

    .social-icon {
        font-size: 1.25rem;
    }

    .footer-left p::before,
    .footer-left p::after {
        width: 18rem;
        margin: 1.75rem auto;
    }

    .footer-side {
        width: 3rem;
    }

    .main-site-nav-list a {
        margin: .5rem .25rem;
        font-size: .85rem;
    }

    #udemy--javascript--projects--text {
        font-size: 1.05rem;
    }

    .main-content-hobbies--auio-section--audio-player audio {
        max-width: 20rem;
        max-height: 3.4rem;
    }
}