body {
    background-color: #9a5d0e;/* #7b5018; */
    text-align: center;
}

#HeaderSection {
    height: 150px;
    text-align: center; 
}

.FlexHeading {
    margin-top: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color:white;
    margin-top: 15px;
    margin-bottom: 10px;
}

p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 100;
}

.Section {
    background-color: #ad6b16;/* #94682f; */
    padding: 5px 20px 0px 20px;
    margin-bottom: 40px;
}

.HeadButton {
    color: #BBBBBB;
    text-shadow: 2px 2px 5px #202020;
}

.PreviewContent {
    background-color: #9b5b02;
    color: white;
}

.ContinueContent {
    background-color: #9b5b02;
    padding-top: 15px;
    color: white;
}

.ContinueReadingButton {
    background-color: #c7832b; /* #b28243; */
    color: white;
}

.active, .ContinueReadingButton:hover, .ContinueReadingButton:active {
    background-color: #9a5d0e;/* #6e5c44; */
}

.inactive {
    background-color: #c7832b;
}

img {
    background-color: #c7832b;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0px;
    width: calc(min(300px, 100% - 20px))
}

pre {
    background-color: #c7832b;
    padding: 10px;
    border-radius: 0px;
    margin-left: -15px;
    margin-right: -15px;
}

code {
    border-radius: 10px;
    /* margin-left: -10px;
    margin-right: -10px; */
}

.CodeNote {
    word-break: break-word;
    white-space: normal;
    font-family: 'Courier New', Courier, monospace;
    font-size: 9pt;
    margin: 0px 10px;
}

#LookAt {
    position: absolute;
    text-align: center;
    margin-top: 20px;
    animation-name: LookAtAnimation;
    animation-duration: 4s;
    animation-delay: 0s;
    animation-fill-mode: both;
    color: white;
    margin-left: calc(max(50%, 240px) - 75px);
}

@keyframes LookAtAnimation {
    0% {margin-top: -50px; color: white}
    25% {margin-top: 15px; color: white}
    80% {margin-top: 15px; color: white}
    100% {margin-top: 15px; color: transparent}
}

#My {
    position: absolute;
    text-align: center;
    margin-top: 20px;
    animation-name: MyAnimation;
    animation-duration: 8s;
    animation-delay: 0s;
    animation-fill-mode: both;
    color: white;
    margin-left: calc(max(50%, 240px) + 16px);
}

@keyframes MyAnimation {
    0% {margin-top: -50px; margin-left: calc(max(50%, 240px) + 16px);}
    12.5% {margin-top: 15px; margin-left: calc(max(50%, 240px) + 16px);}
    45% {margin-top: 15px; margin-left: calc(max(50%, 240px) + 16px);}
    60% {margin-top: 15px; margin-left: calc(max(50%, 240px) - 94px);}
    100% {margin-top: 15px; margin-left: calc(max(50%, 240px) - 94px);}
}

#Shiny {
    position: absolute;
    text-align: center;
    margin-top: 20px;
    animation-name: ShinyAnimation;
    animation-duration: 4s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    color: white;
    rotate: -90deg;
    margin-left: calc(max(50%, 240px) - 160px);
    font-size: 22pt;
}

@keyframes ShinyAnimation {
    0% {margin-top: 10px; color: #9a5d0e}
    15% {margin-top: 60px; color: white}
    30% {margin-top: 50px; color: white; text-shadow: 2px 2px 5px #000000; rotate: -450deg;}
    80% {margin-top: 50px; color: white; text-shadow: 4px 4px 5px #000000; rotate: -450deg;}
    100% {color: transparent; text-shadow: transparent; rotate: -450deg;}
}

#Projects {
    position: absolute;
    text-align: center;
    margin-top: 30px;
    animation-name: ProjectsAnimation;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-fill-mode: both;
    color: white;
    font-size: 30pt;
    overflow-wrap: break-word; 
    border-radius: 20px;
    padding: 0px 15px;
    border-width: 3px;
    border-style: solid;
    text-decoration-line: underline;
}

@keyframes ProjectsAnimation {
    0% {margin-left: 100%; color: #7b5018; border-color: transparent; text-decoration-color: transparent;}
    25% {margin-left: calc(max(50%, 240px)); color: white; transform: translate(-50%); border-color: transparent; text-decoration-color: transparent;}
    100% {margin-left: calc(max(50%, 240px)); color: white; transform: translate(-50%); background-color: transparent; border-color: transparent; text-decoration-color: white;}
}