:root {
    font-size: 1rem;
    color: white;
    overflow-y: hidden;
    overflow-x: hidden;
}

body { 
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    font-family: monospace;
    margin: 0;
    padding: 10px 20px;
    background-color: rgba(11, 11, 11, 0.95);
}

.terminal {
    border: 4px solid white;
    padding: 0px 20px;
    border-radius: 30px;
    height: 98vh;
}

#terminal_input {
    height: 5vh;
    width: 100%;
    font-size: 2rem;
    margin-top: 54px;
    text-align: left;
    margin-left: 0.35vw;
    outline: none;
}

#termlayout {
    display: flex; 
    flex-direction: row;
    padding: 10px;
}

#term_entry {
    font-size: 3rem;
}

.flash {
    animation: flashOpacity 3.4s infinite;
}

@keyframes flashOpacity {
    0%, 100% {opacity: 1;}
    30%, 40% {opacity: 0;}
    50% {opacity: 1;}
}

#termbody {
    height: 100%;
    padding: 15px;
    animation: epicFadeIn 4s;
    overflow-y: scroll;
}

@keyframes epicFadeIn {
    0% {opacity: 0;}
    20% {opacity: 0.15;}
    50% {opacity: 0.6;}
    100% {opacity: 1;}
}

#project_div {
    margin: auto;
    display: flex;
    text-align: center;
    border: 3px solid white;
    min-width: 60vw;
    max-width: 74vw;
    min-height: 60vh;
    max-height: 69vh;
    background: rgba(14, 14, 14, 0.93);
    border-radius: 12px;
    transition: background 0.27s;
    transition-timing-function: ease-in;
}

#project_div:hover {
    background: rgba(34, 34, 34, 0.98);
    cursor: pointer;
}

#project {
    text-align: center;
    margin: auto;
    margin-top: 20px;
}

#proj_title {
    font-size: 2rem;
    margin-bottom: 25px;
}

#proj_desc {
    font-size: 1.3rem;
    padding-left: 40px;
    padding-right: 20px;
    margin-top: 8vh;
    text-align: left;
    
}

#proj_date {
    font-size: 1.3rem;
    font-style: italic;
}

#proj_extra {
    color: rgba(0, 220, 250, 1);
    margin-top: 10vh;
    font-size: 1.3rem;
}

.about_title {
    font-size: 2rem;
    margin-bottom: 4vh;
    border-bottom: 2px solid white;
    padding: 15px;
}

.about_list {
    font-size: 1.2rem;
    padding-left: 55px;
    padding-right: 15px;
}
.about_desc {
    font-size: 1.2rem;
    padding-left: 35px;
    padding-right: 15px;
}
#arrow_dir {
    margin: auto;
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 235, 238, 1);
}

.job_title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.dates_worked {
    font-size: 1.2rem;
    margin-left: 25%;
}

.big_job_details {
    display: flex; 
    flex-direction: row;
    margin: auto;
    justify-content: center; 
    border-bottom: 3px solid white;
    border-bottom-style: ridge;
}

.job_comp {
    display: flex;
    flex-direction: column;
}

.company_name {
    margin-top: 0;
    font-size: 1.1rem;
    font-style: italic;
}

.job {
    border: 3px solid antiquewhite;
    border-radius: 19px;
    padding: 3vh;
    text-align: left;
    margin-bottom: 6vh;
}

.job_details {
    display: flex;
    font-size: 1.15rem;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

.job_details li {
    margin-top: 2vh;
    padding-left: 8px;
    padding-right: 8px;
}
