html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-button {
  display: none;
}

body {
    margin: 0;
    padding: 0;
    padding-top: 12vh;
    width: 100vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: flex-start;
    -ms-overflow-style: none;
}

@media screen and (max-width: 700px) {
    body {
        margin-top: 10vh;
    }
}

div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

h1 {
    margin: 0px;
    color: white;
}

h2 {
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

p {
    color: white;
    margin: 0;
}

#elements {
    width: 100vw;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;

    padding-top: 4vh;
    overflow-x: hidden;
}

.boldText {
    font-weight: bold;
}

.invisible {
    opacity: 0;
}

.animationBand {
    height: 1px; 
    width: 100%;
}

.sectionHeader {
    color: #ffffff;
    font-size: 1.3em;
    cursor: default;
}

#sectionInitiallyFixed {
    width: 100%;
    height: max-content;
    position: fixed;
    overflow-x: hidden;
}

#scrollTo {
    position: static;
    width: 100%; 
    height: 1px;
    margin-top: 1001vh;
    overflow-x: hidden;
}





/* BANNER */
#banner {
    width: 100vw;
    height: 90.5vh; 
    cursor: default;
    position: relative;
    overflow-x: hidden;
}

#theGreatRotator{
    height: 475px;
    width: 475px;
    z-index: 4;
    position: absolute;

    overflow-x: hidden;
}

@media screen and (max-width: 490px) {
    #theGreatRotator {
        width: 90vw;
        height: 90vw;
    }
}

#profilePic {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #ffde21;
    margin-top: 0vh;
    margin-bottom: 0px;
    z-index: 4;

    overflow-x: hidden;
}

.name {
    font-family: "Intel One Mono", monospace;
    font-size: 2em;
    color: #000000;

    margin-top: 35px;
    position: absolute;
    z-index: 5;
}





/* ASCII ART */
.citySkyline {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    justify-items: center;

    position: static;

    height: 400px;
    width: auto;
    overflow: hidden;
}

@media screen and (max-width: 700px) {
    .citySkyline {
        opacity: 0;
    }
}

.asciiLine {
    margin-top: 0px;
    margin-bottom: 0px;
    color: black;
    align-self: center;  
}

#cityForeground {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    
    width: 100%;
    min-height: 400px;
    background-color:rgba(255, 255, 255, 0);
    font-family: Arial;
    font-size: 20px;
    line-height: 20px;
    white-space: pre;
    
    overflow: hidden;
    }

#cityBackground {
    z-index: 2;
    opacity: 0.35;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    background-color:rgba(255, 255, 255, 0);
    font-family: Arial;
    font-size: 20px;
    line-height: 20px;
    white-space: pre;
    
    overflow: hidden;
}

.land81 {
    color:rgb(1, 79, 187);
}





/* SKILL SECTION */
#skills {
    width: 65%;
    display: grid;
    grid-template-rows: 25% 25% 25% 25%;
    grid-template-columns: auto;

    justify-self: center;
    margin-bottom: 12vh;
    overflow-x: hidden;
}

.buttonSegments {
    display: flexbox;
    flex-direction: row;

    justify-content: center;
    max-width: 75vw;
    overflow-x: hidden;
}

.buttonSegments > button {
    margin: 10px;
    width: 6.5vw;
    min-width: 50px; 
    height: 5.2vh;
    min-height: 12px;
    border: 2px outset black;
    overflow-x: hidden;
}

.fullButton {
    background-color: #000000;
    color: white;

    font-weight: 700;
}

.emptyButton {
    background-color: #1A0285;
}

@media screen and (max-width: 700px) {
    #skills {
        width: 100vw;
    }

    .fullButton {
        font-weight: 700;
        font-size: 0.5rem;
        padding: 0px;
        justify-content: center;
    }

    .buttonSegments > button {
        width: 5.5vh;
        height: 5.5vh;
        margin: 10px;
    }

    .buttonSegments {
    justify-content: center;
    justify-self: center;
    }
}





/* PROJECT SECTION */
#projects {
    height: auto;
    width: 65%;
    margin-bottom: 12vh;
    margin-top: 2vh;

    display: flexbox;
    flex-direction: row;
    justify-content: center;
    justify-self: center;
}

.cards {
    display: flexbox;
    flex-direction: row;  
}

.card {
    width: 175px;
    height: 250px;
    border: 1px solid #1A0285;
    border-radius: 6px;
    border: 2px outset black;
    background-color: #FFDC57;
    margin-left: 15px;
    margin-right: 15px;

    cursor: pointer;

    font-size: 0.8rem;
}

#centerCard {

    /* Adopts .card attributes */

    transform: scale(1.1);
    animation: scaleUp 0.3s ease-out 1;
}

.directionButton {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 4px;

    background-color: #1A0285;
    color: white;
    font-weight: 700;

    cursor: pointer;
}

.completeStatusBackground {
    position: absolute;

    width: 60px;
    height: 12px;
    margin-top: 15px;
    
    border-radius: 9px;
    background-color: #00EA23;
    opacity: 0.25;
}

.inProgressStatusBackground {
    position: absolute;

    width: 70px;
    height: 12px;
    margin-top: 15px;
    
    border-radius: 9px;
    background-color: #FF8400;
    opacity: 0.25;
}

.completeStatusForeground {
    position: absolute;
    display: flexbox;
    flex-direction: row;

    width: 60px;
    height: 12px;
    margin-top: 15px;
    
    border-radius: 9px;

    align-items: center;
    padding-left: 10px;
}

.inProgressStatusForeground {
    position: absolute;
    display: flexbox;
    flex-direction: row;

    width: 70px;
    height: 12px;
    margin-top: 15px;
    
    border-radius: 9px;

    align-items: center;
    padding-left: 10px;
}

.completeStatusForeground > div {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin-right: 0px;

    background-color: #00EA23;
}

.inProgressStatusForeground > div {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin-right: 0px;

    background-color: #FF8400;
}

.statusText {
    font-size: 0.6em;
    color: #000000;
    padding-top: 0.5px;
    padding-left: 3px;
    text-align: center;

    font-weight: 400;
}

.projectImage {
    aspect-ratio: 1/1;
    width: 75%;
    margin-top: 35px;
    object-fit: cover;
    opacity: 0.85;

    border: 1px outset black;
}

.projectName {
    color: black;
    margin-top: 7px;
    margin-bottom: 5px;
}

.projectBio {
    color: rgb(44, 44, 44);
    font-weight: 900;
    font-size: 0.8em;
    padding-bottom: 5px;
    padding-top: 2px;
    text-align: center;
}





/* FACT SECTION */
#funFacts {
    font-family: "Intel One Mono", monospace;
    display: block;
    overflow: hidden;
    width: 100vw;
    margin-bottom: 2.5vh;
    margin-left: 0;
    padding-left: 0;
}

.factsLine {
    display: flex;
    flex-direction:row;
    overflow: hidden;
    width: max-content;
    justify-content: flex-start;
}

.factsLine > p {
    height: 36px;
    display: block;
    text-wrap: nowrap;
    color:rgb(255, 167, 73);
    white-space: pre;
    cursor: default;
}

#factsLine1 {
    animation: scroll 30s linear infinite;
    filter: none;
}

#factsLine2 {
    animation: scroll 27s linear infinite;
}

#factsLine3 {
    animation: scroll 30s linear infinite;
}

#factsLine4 {
    animation: scroll 32s linear infinite;
}





/* CONTACT SECTION */
#contactSection {
    width: 100vw;
    padding-top: 2.5vh;
    margin-bottom: 2vh;
    border-top: 2px solid rgb(255, 167, 73);
}

#passingThrough {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-items: center;

    max-width: 100%;
    margin: 0;
    margin-bottom: 3vh;
}

@media screen and (max-width: 700px) {
    #passingThrough {
        font-size: 0.8em;
    }
}

#followButton {
    background-color: #eff3f4;
    color: #0f1419;
    font-family: sans-serif, Helvetica Neue, Arial;
    font-size: 15px;
    font-weight: 800;

    height: 36px;
    width: 83px;
    margin-left: 1vw;
    margin-right: 0px;
    
    border-radius: 9999px;
    border: none;

    cursor: pointer;
    transition: background-color 0.2s ease
}

#followButton:hover {
    background-color: #e4ebee;
}

#socialLinks {
    align-items: start;
    display: flex;
    flex-direction: column;
    margin-top: 1vh;

    font-size: 0.9em;
}

#socialLinks > div {
    display: flexbox;
    flex-direction: row;
    margin-bottom: 2px;
}

#gmail {
    margin-bottom: 2px;
}

#gmailIcon {
    width: 14px;
    height: 14px;
    margin-right: 1vw;
}

#x {
    width: 14px;
    height: 14px;
    margin-right: 1vw;
    padding-left: 2px;
    margin-bottom: 0.5vh

}





/* KEYFRAMES */
@keyframes changeBackground { /* See html */
    0% { background-color: #ffffff; }
    50% { background-color: #ffb150; }        
    75% { background-color: #2a1559; }
    100% { background-color: rgb(6, 6, 19); }
}

@keyframes orbit { /* See theGreatRotator */
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
     
@keyframes stayUp { /* See profilePic */
    0% { transform: rotate(0deg); opacity: 1; border-color: #ffde21; }
    40% { opacity: 0; border-color: #ffb150; }
    60% { opacity: 0; border-color: #38b6e5; }
    80% { opacity: 1; }
    100% { transform: rotate(360deg); }
}

@keyframes scaleUp { /* See #centerCard */
    0% {
        transform: scale(1.05);
    }
    
    100% {
        transform: scale(1.1);
    }
}

@keyframes scroll { /* See factLines 1-4 */
  0% { transform: translateX(0%);}
  100% { transform: translateX(-50%); } /* Uses exact half size, as even with 'width: max-content;', -50% caused rounding errors */
}