body {
    background-color: #202020;
}

#HeadButton1 {
    color: #A0A0A0;
    text-shadow: 2px 2px 5px #202020;
}
#HeadButton2 {
    color: #D8D8D8;
    text-shadow: 2px 2px 5px #202020;
}
#HeadButton3 {
    color: #202020;
    text-shadow: 1px 1px 3px #ebca9d, 2px 2px 4px#ad7326;
}

.ProgrammingButton {
    background-color: #202020; 
    color: white;
}

.MiddleSection {
    padding: 10px 20px 40px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    position: -webkit-sticky; /* for browser compatibility */
    position: sticky;
    /* transition: all 0.5s; */
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.zig-zag-top-dark:before{
    background: 
                linear-gradient(-45deg, #171717 16px, red 16px, blue 16px,  transparent 0), 
                linear-gradient(45deg, #171717 16px, transparent 0);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 22px 32px;
    content: " ";
    display: block;

    height: 32px;
    width: 100%;

    position: relative;
    bottom: 30px;
    left:0;
}

#SolidSection1 {
    z-index: 4;
}

#HeaderSection {
    z-index: 0;
    position: -webkit-sticky; /* for browser compatibility */
    position: sticky;
    top: 30px; 
    padding-bottom: 0px;
}

#Section1 {
    background-color: #404040;
    z-index: 1;
    margin-top: 300px;
    height: 100vh;
}

#Section2 {
    background-color: #9a5d0e;
    z-index: 2;
    margin-top: 100vh;
}

#Section3 {
    background-color: #a7a7a7;
    z-index: 3;
}

#FooterSection {
    background-image: linear-gradient(#171717, #202020);
    margin-top: 50px;
    /* padding-bottom: 15px; */
    z-index: 10;
    position: -webkit-sticky; /* for browser compatibility */
    position: sticky;
}

#TextCenterer {
    max-width: 1500px;
    margin-left: calc(max(20px, calc(100% - 1500px)/2));
    margin-right: calc(max(20px, calc(100% - 1500px)/2));;
}

#Hey {
    position: relative;
    margin-left: calc(50px + max(0px, calc(100% - 1500px)/2));
    margin-right: 200%;
    font-size: 30pt;
    animation-name: HeyAnimation;
    animation-duration: 0.5s;
    width: 300px;
}

@keyframes HeyAnimation {
    0% {margin-left: -300px;}
    100% {margin-left: calc(50px + max(0px, calc(100% - 1500px)/2));}
}

#Iam {
    position: relative;
    text-align: left;
    margin-top: 80px;
    animation-name: IamAnimation;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    color: white;
}

@keyframes IamAnimation {
    0% {margin-left: -300px;}
    100% {margin-left: calc(50% - 96px);}
}

#Nico {
    color: rgb(255, 165, 0);
    overflow: hidden;
    position: relative;
    text-align: left;
    animation-fill-mode: both;
    margin-top: -15px;
    font-size: 50px;
    animation-name: NicoAnimation;
    animation-duration: 1.5s;
    animation-delay: 0.2s;
}

@keyframes NicoAnimation {
    0% {margin-left: -600px;}
    100% {margin-left: calc(50% - 70px);}
}

#WelcomeToWebsite {
    font-weight: 600;
    text-align: center;
    min-height: 50px;
}