/* HEX COLORS
    myORANGE    #FFAE00
    myCYAN      #00AFAF
    myBLACK     #111111 
    myGREY      #777777
    myWHITE     #EEEEEE
*/

html, body {
    
    background-color:   #111111;
    font-family:        'Roboto Mono',
                        'Menlo',
                        monospace;

    font-size:  16px;
    color:      #777777;
}

#all-of-it {
    text-align:         left;
    padding-top:        64px;
    padding-left:       64px;
    padding-right:      64px;
    background-color:   #111111;
}

#title {
    font-size:          32px;
    font-weight:        bold;
    color:              #FFAE00;
    padding-bottom:     16px;
}

#subtitle {
    font-size:      16px;
    font-weight:    bold;
    color:          #EEEEEE;
    padding-bottom: 32px;
}

.list{
    list-style-type: none;
}

.list-header{ 
    padding-top:    32px;
    font-size:      24px;
    font-weight:    bold;
    color:          #EEEEEE;
    font-style:     bold;
}

.list-subheader {
    padding-top:    16px;
    font-size:      16px;
    font-style:     bold;
    color:          #EEEEEE;
}

#border {
    flex-wrap:       wrap;
    justify-content: center;
    list-style-type: none;

}

ul {
    /* padding-top:    8px; */
    /* margin-bottom:  16px; */
    margin:         4px;
    list-style-type: none;
}

li {
    /* margin-bottom:  2px; */
    /* margin-top:     2px; */
    margin:         4px;
    list-style-type: none;
}

a {
    color:              #FFAE00;
    text-decoration:    none;
    transition:         color 0.5s;
    -webkit-transition: color 0.5s;
}

a:hover {
    color:              #00AFAF;
    text-decoration:    none;
    transition:         color 0.5s;
    -webkit-transition: color 0.5s;
}

.emph {
    color:              #FFAE00;
}

.deemph {
    color:              #777777;
}

.cpp-code {
    color: #00AFAF;
    border-radius: 6px;
    padding: 1px 4px;
    background-color: #3e3e3e;
    font-family:        'Roboto Mono',
                        'Menlo',
                        monospace;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section {
    /* keep size of secion fixed */
    flex: 0 0 20em;
    margin: 10px; /* Adds some space around each section */
    /* Add more styling as needed */
}

.pulsating-text {
    color: black; /* Initial color of the text */
    /* font-size: 24px; */
    animation: pulsate 1s infinite;
}

@keyframes pulsate {
    0% { color: #111111; }
    50% { color: #FFAE00; } /* Change to desired pulsating color */
    100% { color: #111111; }
}

/* .emoji-cloud::before {
    font-size:  28px;
    content: '☁️';
    opacity: 1;
    transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}

.emoji-cloud:hover::before {
    font-size:  28px;
    content: '🌩️';
    opacity: 1;
} */