@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Raleway:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Raleway:wght@800&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --background-color: #222831;
    --dark-purple: #AA2EE6;
    --nav-color: #212121;
    --light-purple: #AD62AA;
    --red: #E94560;
    --success: #5cb85c;
    --danger: #FA1E0E;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
}

h1 {
    font-size: 6.5rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
}

h2 {
    font-size: 6.5rem;
    font-weight: 900;
    font-family: "Ubuntu", sans-serif;
    width: 100%;
}

h3 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
    margin-top: 3rem;
    padding-bottom: 20px;
    transition: all 0.2s ease;
}

h3:hover {
    transform: scale(102%);
    color: var(--red);
    cursor: pointer;
    padding-left: 1rem;
}

nav {
    padding: 0;
    margin: 0;
}

footer {
    text-align: center;
}

div {
    overflow: hidden;
}

/* General Classes*/
.white {
    color: white;
}

.pink {
    color: var(--dark-purple);
}

.light-pink {
    color: var(--light-purple);
}

.black {
    color: var(--nav-color)
}

.margin-top {
    margin-top: 3rem;
}

.top-margin-lg {
    margin-top: 45rem;
}

.margin {
    margin-left: 5rem;
}

.in-line {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.link {
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    cursor: pointer;
}

.link:hover {
    transform: scale(105%);
    color: var(--red);
    text-decoration: underline;
}

.paragraphs {
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: "Jost", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

.background-text {
    color: #444444;
    font-weight: 200;
    font-size: 1.5rem;
    font-style: italic;
    padding-right: 0;
    font-family: 'Dancing Script', cursive;
}

.col {
    padding-right: 0;
}

.flex {
    display: flex;
}

.noPadMar {
    padding: 0;
    margin: 0;
}

.special-background-text {
    color: #B2B1B9;
    font-weight: 500;
    font-size: 3rem;
    font-style: normal;
    font-family: 'Dancing Script', cursive;
}

.nameAnimation:hover {
    cursor: pointer;
    color: var(--red);
    transition: none;
}

.vertical {
    flex-direction: column;
}

.rubberBandAnimation {
    animation: rubberBand 1s forwards;
}

.containerBasic {
    margin: 0;
    padding: 0;
}

.container-fluid {
    padding: 0;
    margin: 0;
}

.row {
    width: 100%;
    margin: 0;
    padding: 0;
}

.divideEven {
    justify-content: space-evenly;
    align-content: space-between;
}

.fullWidth {
    width: 100%;
}

.center {
    justify-content: center;
    align-items: center;
}

.flex-end {
    align-items: flex-end;
    justify-self: flex-end;
}

.col {
    flex-direction: column;
}

.container {
    padding: 0;
    margin: 0;
}

.flexHorizontalCenter {
    justify-content: center;
}

.flexCenter {
    justify-content: center;
    align-items: center;
}

.textCenter {
    text-align: center;
}

.wrapper {
    flex-wrap: wrap;
}

.spread {
    justify-content: space-evenly;
}

/* End General Clsses*/
/*Id's */

#mainHeader {
    margin-top: 4rem;
    padding-left: 0;
}

#mainNavbar {
    font-size: 1.9rem;
    font-weight: 100;
    padding: 0 1rem;
    background-color: var(--nav-color);
    display: flex;
    justify-content: space-evenly;
}

#mainNavbar .nav-link {
    color: white;
}

#mainNavbar .nav-link:hover {
    color: var(--light-purple);
}

#mainNavbar .navbar-brand {
    color: var(--light-purple);
    font-size: 3rem;
}

/* HomePage.css */

#web-dev {
    animation: color-change 4s infinite alternate;
}

/*About Me */

#aboutMe {
    margin-top: 7rem;
    padding: 0;
}

#me-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.me-img-container {
    height: 600px;
    width: 600px;
    overflow: hidden;
    position: relative;
}

#myButton {
    font-size: 50px;
    font-family: "Permanent Marker";
    font-weight: 400;
    letter-spacing: 0.3rem;
    padding: 0.25rem 4rem;
    border-radius: 20px;
    color: var(--dark-purple);
    background-color: var(--background-color);
    box-shadow: none;
    position: relative;
    z-index: 1;
    border: var(--dark-purple) solid 1px;
    transition: all 0.25s ease-in;
}

#myButton:hover {
    cursor: pointer;
    color: var(--nav-color);
    border: var(--light-purples) solid 1px;
}

#myButton:before {
    transition: 0.4s all ease;
    border-radius: 19px;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0%;
    opacity: 0;
    content: "";
    background-color: var(--light-purple);
    border: var(--light-purples) solid 1px;
}

#myButton:hover:before {
    border-radius: 19px;
    border: var(--light-purples) solid 1px;
    transition: 0.4s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

#recent-projects {
    margin-top: 6rem;
}

#recent-projects h2 {
    margin-bottom: 4rem;
}

#barHeader {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}

#barHeader:hover,
.learning:hover {
    color: var(--red);
}

#mySkillsPage {
    margin-top: 5rem;
}

#mySkills {
    margin-top: 9rem;
}

.active {
    text-decoration: underline;
    text-decoration-color: var(--dark-purple);
    text-underline-offset: 15px;
    text-decoration-thickness: 1px;
}

/*End Id's*/

/* To be fixed */
.navbar.scrolled {
    background: rgb(222, 192, 222);
    transition: background 500ms;
}

.aboutMeText {
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: "Roboto" sans-serif;
    position: relative;
}

.textanimation span {
    color: #FF5F40;
    /* font-size: 1.75rem; */
    transition: color;
}

.aboutMeText span:nth-child(146) {
    display: block;
    padding: 15px 0;
}

/*End About Me*/

/*About Me side Page */

#aboutMeSidePage {
    margin-top: 0rem;
}

#aboutMeChangingText {
    margin-top: 4rem;
}

#whatElseHeading {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

#aboutMeImages {
    margin: 7rem 1rem;
}

#timelineMargin {
    margin-top: 3rem;
}

#getFactButton {
    font-size: 50px;
    font-family: "Permanent Marker";
    font-weight: 400;
    letter-spacing: 0.3rem;
    padding: 0.25rem 2rem;
    border-radius: 20px;
    color: var(--dark-purple);
    background-color: var(--background-color);
    box-shadow: none;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    width: 60%;
    border: var(--dark-purple) solid 3px;
    transition: all 0.25s ease-in;
    margin-bottom: 2em;
}

#getFactButton:hover {
    cursor: pointer;
    color: var(--nav-color);
    border: var(--light-purple) solid 3px;
}

#getFactButton:before {
    border-radius: 15px;
    transition: 0.4s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0%;
    opacity: 0;
    content: "";
    background-color: var(--light-purple);
}

#getFactButton:hover:before {
    transition: 0.4s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

/*Skills */
.progress {
    width: 90%;
    padding: 0px;
}

.newSkillsRow {
    margin: 3rem
}

.bar-text {
    margin: 0.25rem 0;
    margin-left: 0.4rem;
    text-align: left;
    width: 88%;
}


.newSkillsRow .bar-text {
    margin-top: 0.75rem;
}

.bar-text {
    font-size: 2rem;
    padding: 15px 0;
    font-family: "Roboto" sans-serif;
}

.learning {
    transition: all .3s;
    cursor: pointer;
}

/*End My Skills */
/*My Work*/

.imgContainer {
    display: flex;
    justify-content: center;
}

.projectImg {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 90%;
    height: auto;
    border-radius: 22.5%;
    cursor: pointer;
}

.projectImg:hover {
    opacity: 85%;
}

.projects {
    position: relative;
    text-align: center;
    color: var(--background-color);
}

.centered {
    padding: 0;
    margin: 0;
    cursor: default;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -60%);
    font-size: 3.5rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.projects {
    transition: all .2s ease-in;
}

.projects:hover {
    color: white;
    font-size: 4rem;
    font-weight: 900;
}

.comingSoon {
    transition: all .3s ease;
}

.comingSoon:hover {
    opacity: 30%;
}


/*Contact me*/
#contactQuestions {
    margin-left: 0;
    padding-right: 6rem;
    text-align: justify;
}

#contactQuestions h3 {
    text-align: left;
}

/* Form */
#form-section {
    margin-top: 10rem;
    width: 100%;
    margin-bottom: 4rem;
}

#final-text {
    margin-left: 0;
}

#formButton {
    transition: 0.15s all ease-in-out;
}

.form-container {
    width: 75%;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 300;
    font-family: "Ubuntu", sans-serif;
}

.form-group label {
    font-family: "Permanent Marker", sans-serif;
    font-weight: 400;
    padding: 10px 0px;
}

.form-group label:first-child {
    padding-top: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 5px;
    font-size: 18px;
    border: 3px solid var(--light-purple);
    margin-top: 10px;
    color: white;
    background-color: #2B2B2B;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 3px solid #5cb85c;
    outline: none;
    box-shadow: none;
}

input:placeholder-shown,
textarea:placeholder-shown {
    font-style: italic;
}

textarea {
    resize: none;
}

button[type="submit"] {
    width: 100%;
    outline: none;
    padding: 20px;
    font-size: 2rem;
    border: 2px solid var(--dark-purple);
    border-radius: 20px;
    background-color: var(--background-color);
    color: white;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: .3s ease background-color transform;
    font-family: "Permanent Marker";
    font-weight: 400;
    letter-spacing: 0.3rem;

}

button[type="submit"]:hover {
    background-color: var(--light-purple);
    border: 2px solid var(--light-purple);
    transform: scale(99%);
}

#status {
    width: 90%;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 8px;
}

#status.success {
    background-color: var(--success);
    animation: status 4s ease forwards;
}

#status.error {
    color: white;
    background-color: var(--danger);
    animation: status 4s ease forwards;
}

/* Scroll Hint */

.arrow {
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
    background-size: contain;
}

.arrow:first-child {
    bottom: 20px;
    opacity: 0.3;
}

.pulse:not(:first-child) {
    opacity: 1;
    animation-delay: .3s;
}

.pulse {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

/*media respoviness */
@media(max-width:1600px) {

    h2 {
        font-size: 4.75rem;
    }
}

/*BootStrap-XL +1100 px*/
@media(max-width:1300px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 4.5rem;
    }

    #barHeader {
        font-size: 2rem;
    }

    .bar-text {
        font-size: 1rem;
    }

    .paragraphs {
        font-size: 1.25rem;
    }

    .textanimation span {
        font-size: 1.25rem;
    }

    .aboutMeText {
        font-size: 1.25rem;
    }

    .margin {
        margin-left: 3rem;
    }
}

/*Small Respoviness Fixes */
@media(max-width:1105px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 4rem;
    }

    #whatElseHeading {
        margin-top: 4rem;
    }
}

/*Bootstrap lg - 992PX*/
@media(max-width:992px) {

    /*Classes Connected with lg */
    .noDisplay-lg {
        display: none;
    }

    /*All Sections Specific Responivness*/
    #aboutMe,
    #aboutMeSidePage,
    #mySkills,
    #mySkillsPage,
    #recent-projects,
    #form-section {
        text-align: center;
    }

    #aboutMe .background-text,
    #aboutMeSidePage .background-text,
    #mySkills .background-text,
    #mySkillsPage .background-text,
    #recent-projects .background-text,
    #form-section .background-text {
        display: none;
    }

    #aboutMe h2,
    #aboutMeSidePage h2,
    #mySkills h2,
    #mySkillsPage h2,
    #recent-projects h2 {
        margin-bottom: 4rem;
    }

    /*General Respoviness*/
    h3 {
        font-size: 2rem;
    }

    .margin {
        margin-left: 2.5rem;
    }

    .paragraphs {
        font-size: 1.5rem;
    }

    .centered {
        font-size: 2rem;
    }

    /*BackGround Text Respoviness*/

    .special-background-text {
        font-size: 1.5rem;
    }

    .background-text {
        font-size: 1rem;
    }

    /*About Me Respoviness Main Page*/


    #audioText {
        display: inline !important;
    }

    #me-img {
        padding: 5rem;
        padding-top: 6rem;
    }

    #myButton {
        font-size: 2rem;
    }

    .aboutMeText {
        font-size: 1.5rem;
    }

    /*My Skills Respoviness */

    #mySkills {
        margin-top: 2rem;
    }

    .newSkillsRow {
        margin: 1rem
    }

    #getFactButton {
        width: 60%;
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }

    .newSkillsRow.progress {
        width: 95%;
    }

    /*My Skills Page Respoviness */

    #mySkillsPage {
        margin-top: 2rem;
    }

    #sideSkillsTab {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        margin-left: 3rem;
        overflow: hidden;
    }

    /*Projects Respoviness */

    /*Contact Me Responivness */
    #form-section {
        margin-top: 5rem;
        margin-bottom: 0;
    }

    #formButton {
        font-size: 2rem;
    }

    #contactQuestions {
        padding-right: 2rem;
    }

    /*Form Responivness */
    .form-container {
        width: 90%;
        text-align: left;
        margin-bottom: 0;
    }

    #whatElseHeading {
        margin-top: 3rem;
    }
}

/*Bootstrap md - 768 px*/
@media(max-width: 768px) {

    /*General Respoviness*/
    h3 {
        font-size: 1.75rem;
    }

    .margin {
        margin-left: 1rem;
    }

    .paragraphs {
        font-size: 1.25rem;
    }

    /*About Me Respoviness */
    .aboutMeText {
        font-size: 1.25rem;
    }

    .textanimation span {
        font-size: 1.25rem;
    }

    #me-img {
        padding: 4rem;
        padding-top: 5rem;
    }

    /*Buttons */
    #myButton,
    #formButton {
        font-size: 1.5rem;
    }

    #whatElseHeading {
        margin-top: 2rem;
    }
}

/*Bootstrap Small - 576px */

@media(max-width:576px) {

    /*General Respoviness*/
    h1 {
        font-size: 3.9rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .margin {
        margin-left: 0.5rem;
    }

    .paragraphs {
        font-size: 1rem;
    }

    .centered {
        font-size: 1.5rem;
    }

    /*Main Area Respoviness */
    #mainHeader {
        text-align: center;
        padding: 0 10px;
    }

    #mainHeader .background-text {
        display: none;
    }

    #mainNavbar .navbar-brand {
        font-size: 2.5rem;
    }

    /*AboutMe Resposivness*/
    .aboutMeText {
        font-size: 1rem;
    }

    .textanimation span {
        font-size: 1.1rem;
    }

    #me-img {
        padding: 2rem;
        padding-top: 3rem;
    }

    /*Buttons */
    #myButton,
    #formButton {
        font-size: 1.25rem;
    }

    #whatElseHeading {
        margin-top: 1.5rem;
    }
}

/*Bootstrap XSmall - <576Px*/
@media(max-width:385px) {

    /*General Respovinesses*/
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1rem;
    }

    .paragraphs {
        font-size: .75rem;
    }

    .centered {
        font-size: 1rem;
    }

    /*BackGround Text Respoviness */
    .special-background-text {
        font-size: 1rem;
    }

    .background-text {
        font-size: 0.75rem;
    }

    /*Main Area Respoviness */
    #mainNavbar .navbar-brand {
        font-size: 1.25rem;
    }

    #mainNavbar .nav-link {
        font-size: 1.5rem;
    }

    /*Buttons */
    #myButton,
    #formButton {
        font-size: 1rem;
    }

    /* About Me Respossivness */
    #aboutMe p {
        padding: 0 0.5rem;
    }

    #me-img {
        padding: 3rem;
    }
}



/*KeyFrames */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 0.3;
    }
}

@keyframes status {
    0% {
        opacity: 1;
        pointer-events: all;
    }

    90% {
        opacity: 1;
        pointer-events: all;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes rubberBand {
    0% {
        transform: scale3d(1, 1, 1);
    }

    35% {
        transform: scale3d(.75, 1.25, 1.25);
        color: var(--red);
    }

    45% {
        transform: scale3d(1, .75, 1);
    }

    60% {
        transform: scale3d(0.8, 1.2, 1.2);
        color: var(--red);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1.05);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes color-change {
    0% {
        color: crimson;
    }

    25% {
        color: #FF79CD;
    }

    50% {
        color: #AA2EE6;
    }

    75% {
        color: #FFDF6B;
    }

    100% {
        color: #FF5F40;
    }
}