<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
main.css
Author: Zach Moore - Zach@NerdVenture.net
*/

p {
    font-size: 20px;
}

h1,h2,h3,h4,h5,h6 {
    /* font-family: 'Gochi Hand', cursive; */
    font-family: 'Rock Salt', cursive;
}

h2 &gt; a {
 color: black;
}


/*========================= Smooth Scroll =========================*/

html {
    scroll-behavior: smooth;
}

/*========================= Shadows =========================*/

.bottom-shadow {
    box-shadow: 0 17px 34px rgba(0, 0, 0, 0.1); 
	-webkit-box-shadow: 0 17px 34px rgba(0, 0, 0, 0.1); 
    -moz-box-shadow: 0 17px 34px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.33s ease-in-out !important;
}

/*========================= Text =========================*/

.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.text-light {
    color: #aaa !important;
}

/*========================= Colors =========================*/

.bk-light-gray {
    background-color: #f1f1f1;
}

/*========================= Shapes =========================*/

.shape1 {
    clip-path: polygon(0 0, 100% 6%, 100% 95%, 0% 100%);
}

.shape2 {
    /* color: #fff; */
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0% 95%);
    -webkit-box-shadow: inset 0px 10px 36px -20px rgba(0,0,0,0.57);
    -moz-box-shadow: inset 0px 10px 36px -20px rgba(0,0,0,0.57);
    box-shadow: inset 0px 10px 36px -20px rgba(0,0,0,0.57);
}

/*========================= Sections =========================*/

/* header */
@media (max-width: 576px){
    .display-3 {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}

#header {
    height: 100vh;
    /* background: url('programmer.jpg') no-repeat bottom;
    background-size: cover; */
}

.section {
    min-height: 350px;
    /* padding-top: 10em;
    padding-bottom: 10em; */
}

/*========================= logos =========================*/

.tech-logo {
    min-height: 40px;
    max-height: 3.5vw;
}

.tool-logo {
    min-height: 80px;
    max-height: 3.5vw;
    padding-left: 2em;
    padding-right: 2em;
}

.avatar {
 width: 8vw;
 min-width: 50px;
}

/*========================= forms =========================*/

@media (min-width: 768px){
    form {
        max-width: 50%;
    }
}

/*========================= icons =========================*/

.icon {
    display: inline-block;
    width: 2em;
    height: 2em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
  }

.btn-icon {
    position: relative;
    top: -2.5px;
    /* display: inline-block; */
    width: 1.5em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    font-size: 1em;
}

#down-arrow {
    position: relative;
    top: -100px;
}

@media (max-width: 580px){
    #down-arrow {
        /* display: none; */
        top: -40px;
    }
}

/*========================= colors =========================*/

.transparent {
    color: rgba(0,0,0,0) !important;
}

/*========================= Nav =========================*/

.showNav{
    display: block !important;
}

/*========================= Nav toggler icon =========================*/

.navbar-toggler{
    border: 0 !important;
}

.navbar-toggler:focus {
    outline: 0 !important;
}

#menu-toggler {
    /* margin: 1em; */
    width: 40px;
    cursor: pointer;
    border: 0;
    /* position: absolute;
    right: 0; */
}

#menu-toggler:after,
#menu-toggler:before,
#menu-toggler div {
    background-color: #000;
  border-radius: 3px;
  content: '';
  display: block;
  height: 2px;
  margin: 10px 0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* animation from burger to X */
.toggleTrans:hover:before {
    -webkit-transform: translateY(12px) rotate(135deg);
        -ms-transform: translateY(12px) rotate(135deg);
            transform: translateY(12px) rotate(135deg);
  }
  
.toggleTrans:hover:after {
    -webkit-transform: translateY(-12px) rotate(-135deg);
        -ms-transform: translateY(-12px) rotate(-135deg);
            transform: translateY(-12px) rotate(-135deg);
}

.toggleTrans:hover div {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

.header-resp-menu-height {
    /* max-height: 100em; */
    height: 20em;
}

.nav-show {
    display: initial;
}



/*========================= animations =========================*/

.ease {
    transition: all 0.5s;
}

.bounce {
    animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}

.send-mail-btn-sending-anim {
    -webkit-animation: spinX .5s ease infinite;
            animation: spinX .5s ease infinite;
}

.send-mail-btn-sent-anim {
    -webkit-animation: fly-right .25s ease forwards;
            animation: fly-right .25s ease forwards;

/* fly right */
@-webkit-keyframes fly-right {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0;
        display: none;
    }
}
@keyframes fly-right {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0;
        display: none;
    }
}

/* spinY */
@-webkit-keyframes spinX {
    0% {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
    }

    100% {
        -webkit-transform: rotateX(360deg);
                transform: rotateX(360deg);
    }
}
@keyframes spinX {
    0% {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
    }

    100% {
        -webkit-transform: rotateX(360deg);
                transform: rotateX(360deg);
    }
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}</pre></body></html>