/** load fonts **/
@font-face{
    font-family: 'Gaegu';
    src: url('Gaegu/Gaegu-Regular.ttf') format('truetype');}
@font-face{
    font-family: 'GaeguBold';
    src: url('Gaegu/Gaegu-Bold.ttf') format('truetype');}


/** styling for all pages **/
/* body general formatting */
body {
    margin: 0 auto;
    background-color: rgb(255, 249, 235);
    color:rgb(91, 86, 75);
    font-family: Gaegu, Times, serif;
    font-size: 22px;
    padding: 30px;}
h1, h2 {
    font-family: GaeguBold, Times, serif;
    text-align: center}
h1 {
    color:rgb(255, 255, 255);}
h2 {
    color:rgb(255, 201, 201);}
footer {text-align: center;
    margin: 30px 30px auto auto;
    font-size: 16px;
    padding: 20px;
    font-family:'Times New Roman', Times, serif;
    background-color:rgba(77, 76, 81, 0.2)}


/* header and navigation formatting */
.header {
    background-color:rgb(255, 201, 201);
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    color: white}
.navList {
    margin: 0px;
    padding: 20px 0 20px 0;}
.navItem {
    background-color:rgb(255, 205, 205);
    display:inline;
    padding:20px;
    border-right:1px solid rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
    border-bottom:1px solid rgb(255, 255, 255);
    border-left:1px solid white;}
a {
    color: rgb(255, 130, 170);}

/* different color for hovered tab's nav bar representation */
a:hover {
    color:rgb(137, 186, 255);}

/* different color for active tab's nav bar representation */
#active {
    background-color:rgb(255, 249, 235);
    border-bottom: 1px solid rgb(255, 249, 235);}


/** formatting for home page **/
/* image formatting */
img {position:static;}
img.small {width: 100px;
    height: 100px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;}
img.align-right	{
    float: right;
    margin-left: 20px;}
img.medium {
    width: 300px;
    height: 300px;
    padding: 20px;}
img.align-left {
    float: left;
    margin-right: 20px}
img.horizontal {
    width: 240px;
    height: 180px;
    padding: 20px;}   
img.vertical {
    width: 240px;
    height: 320px;
    padding: 20px;}

    
/** styling for schedule page **/
/* general table formatting */
table {
    display: block;
    max-height: 500px;
    overflow: scroll;
    padding: 50px 50px 50px 50px;
    width: 50%;
    table-layout:fixed;
    margin: auto auto;
    border: 2px solid rgb(255, 201, 201);
    background-color: rgba(255, 200, 255, 0.2);
    color:rgb(137, 186, 255)}
td {
    padding: 10px 10px 10px 10px;
    width:20%}
th {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 90%;
    border-bottom: 2px solid #999;
    text-align: center;}

/* assigns colors for different courses in schedule using their assigned classes */
td.acct, td.finance{
    background-color: rgb(215, 237, 232);
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color:slategrey;}
td.writing, td.interp, td.fev{
    background-color:rgb(244, 186, 186);
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color:slategrey;}
td.bs, td.stats1, td.stats2 {
    background-color:rgb(193, 186, 244);
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color:slategrey;}
td.micro, td.macro, td.bse {
    background-color:rgb(186, 210, 244);
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color:slategrey;}
td.ble, td.ble2{
    background-color:rgb(201, 253, 177);
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color:slategrey;}
td.cs1, td.cs2, td.cs3{
    background-color:rgb(255, 230, 173);
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color:slategrey;}

/* different background and text color for a course that the cursor is on */
#course:hover {
    background-color: #ff7c7c;
    color: rgb(255, 255, 255);}

/** styling for survey page **/
/* general formatting for form */
form {
    border: 2px solid rgb(255, 202, 202);
    margin: 20px auto auto;
    padding: 10px;
    width: 90%;
    background-color:rgb(234, 231, 255);}
legend {
    text-align:center;}
input {
    background-color:rgb(255, 202, 202);
    color:rgb(101, 101, 101);
    padding: 10px;
    margin: 40px;}
label {
    color:rgb(101, 101, 101);}
select {
    background-color:rgb(255, 202, 202);
    width: 260px;
    color:rgb(91, 86, 75);
    margin: 40px;}
textarea {
    background-color: rgb(255, 202, 202);
    color:rgb(101, 101, 101);}

/* formatting for specific elements */
input#picbutton {
    background-color: transparent;
    padding: 0px;
    margin:0px;}
input#song {
    background-color: rgb(234, 231, 255);
    font-family:Gaegu, Times, serif;}
input#submit {
    text-shadow: 0px 1px 1px rgb(255, 255, 255);
    color:rgb(255, 130, 170);
    width: 100px;}
/* changes style of submit button with cursor on it */
input#submit:hover {
    background-color:rgb(215, 237, 232);
    background: -webkit-gradient(linear, left top, left bottom, from(#b4cdff), to(#d2fffe));
    color:rgb(255, 170, 170);}


/** styling for resume page **/
/* formatting for entire resume */
div.resume {
    width: 80%;
    height: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color:white;
    border: 1px solid grey;
    overflow: scroll;}

/* formatting for text within resume */
#resume_text, #resume_list{
    font-size:16px;
    padding:10px;}
#resume_h2, #resume_text, #resume_h4 {
    font-family: 'Times New Roman', Times, serif;
    color:black;
    padding:10px;
    margin-top: 0px;
    margin-bottom: 0px;}

/* formatting for sections in resume */
.resumeHeader, .resumeEducation, .resumeSide, .resumeRight {
    font-family: 'Times New Roman', Times, serif;
    color:black;
    padding:0px;
    margin:0px;
    background-color:white;
    border-bottom: 1px solid grey;
    width:100%;}
.resumeSide, .resumeRight{
    border-bottom:none;}
aside {
    max-width: 30%;
    height:80%;
    left:0;
    border-right: 1px solid grey;}
.resumeRight {
    float: right;
    max-width:69.9%;
    height:80%;
    left: 32%;
    border-left:1px solid grey;
    overflow:scroll;}

/* formatting for iframe on resume page */
iframe {
    display: block;
    margin-left:auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 80%;}