/* --------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------ OBJECT SANS ------------------------------------------------ */
/* --------------------------------------------------------------------------------------------------------------*/

@font-face {
    font-family: 'object_sansheavy';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-heavy-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'object_sansheavy_slanted';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-heavyslanted-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-heavyslanted-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'object_sansregular';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-regular-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'object_sansslanted';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-slanted-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/object-sans/objectsans-slanted-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* -------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------- CONSOLAS ------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------*/

@font-face {
    font-family: 'consolasregular';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consola-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consola-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'consolasbold';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolab-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolab-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'consolasitalic';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolai-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolai-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'consolasitalic';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolas-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolas-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'consolasbold_italic';
    src: url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolaz-webfont.woff2') format('woff2'),
         url('https://www.astro.utoronto.ca/~gurman.sachdeva/fonts/consolas/consolaz-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* --------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------- SCROLLBAR ------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------*/

::-webkit-scrollbar {
    width: 15px;
}
 
::-webkit-scrollbar-thumb {
    background: #f1f1f1; 
    transition: 0.4s;
}

::-webkit-scrollbar-thumb:hover {
    background: #afc9f8; 
}

/* ---------------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------- GENERAL FORMAT ----------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------*/

body {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10;
    margin-right: 10;
}

div.window {
    position: fixed;
    top: 0%;
    content:'';
    height: 84vh;
    width: calc(100% - 20px);
    z-index: 99;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    margin-top: 16vh;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    background-color: #222222;
}

div.footerwindowcont {
    height: 20px;
    width: 100%;
    position: relative;
    z-index: 104;
}

div.footerwindow {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    background-color: #222222;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

div.footerwindowbgd {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    background-color: #000000;
}

div.main {
    flex:1; 
    padding-left: 8%; 
    padding-right: 8%; 
    margin-top:16vh;
    z-index: 100;
}

footer {
    color: #f1f1f1;
    font-family: consolasregular;
    font-size: 18;

    z-index: 102;
    background-color: #000000;
}

footer p {
    margin-top: 10px;
    margin-bottom: 10px;
}

img {
    border-radius: 10px / 10px;
}

/* -------------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------- GENERAL TEXT ----------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------*/

h1 {
    color: #6ea1ff;
    font-family: object_sansheavy;
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    color: #afc9f8;
    font-family: consolasbold;
    font-size: 30;
}

h3 {
    color: #f1f1f1;
    font-family: consolasbold;
    font-size: 18;
}

h3.resume-with-date {
    color: #f1f1f1;
    font-family: consolasregular;
    font-weight: normal;
    font-size: 18;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h3 a {
    color: #6ea1ff;
    text-decoration: none;
}

h3 a:hover:not(.active) {
    text-decoration: underline;
}

p {
    color: #f1f1f1;
    font-family: consolasregular;
    font-size: 18;
}

p a {
    color: #6ea1ff;
    text-decoration: none;
}

p a:hover:not(.active) {  
    text-decoration: underline;
}

ul.notes li {
    color: #f1f1f1;
    font-family: consolasregular;
    font-size: 18;
    list-style-type: square;
}

ul li a {
    color: #6ea1ff;
    text-decoration: none;
    font-family: consolasregular;
    font-size: 18;
}

ul li a:hover:not(.active) {  
    text-decoration: underline;
}

ol li {
    color: #f1f1f1;
    font-family: consolasregular;
    font-size: 18;
}

ol li a {
    color: #6ea1ff;
    text-decoration: none;
    font-family: consolasregular;
    font-size: 18;
}

ol li a:hover:not(.active) {  
    text-decoration: underline;
}

th {
    color: #f1f1f1;
    font-family: consolasbold;
    font-size: 18;
    text-align: left;
    padding-right: 30;
    min-width: 100;
}

table tr td {
    vertical-align: top;
    text-align: left;
}

td p {
    margin-top: 6;
    margin-bottom: 0;
}

.in-text-button {
    background: none; 
    border: none; 
    padding: 0; 
    cursor: pointer; 
    font: inherit; 
    color: #6ea1ff;
}

.in-text-button:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------- NAVIGATION ------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------*/

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 16%;
    background-color: #000000;
    font-family: consolasregular;
    position: fixed;
    top: 0;
    left: 0;
    width: 94%;
    padding-left: 3%;
    padding-right: 3%;

    z-index: 101;
}

nav .home-button {
    display: flex;
    align-items: center;
    height: 16vh;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 45%;
    flex-flow: wrap;
}
  
.nav-links li {  
    list-style: none;
    padding-top: 10;
    padding-bottom: 10;
}

.nav-links a {  
    color: #f1f1f1;
    text-decoration: none;
    font-size: 18;
    padding: 10 15;  

    border-width: 2;
    border-style: solid;
    border-color: #f1f1f1;
    border-radius: 10px / 10px;
    transition: 0.4s;
}
  
.nav-links a:hover:not(.active) {  
    border-color: #6ea1ff;
    color: #6ea1ff;
    text-decoration: none;
}
  
.nav-links li a.active {
    border-color: #6ea1ff;
    color: #6ea1ff;
}

/* --------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------------- COLLAGE -------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------*/

div.collage {
    padding-left: 8;
    padding-right: 8;
    padding-bottom: 40;
    float: left;
    width: 95%;
}

div.collage img {
    width: 100%;
}

div.collage a p {
    text-decoration: none;
}

div.desc {
    text-align: left;
    color: #f1f1f1;
    font-family: consolasbold;
    font-size: 18;
}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------- GENERIC BUTTONS ----------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------*/

.general-button {  
    background-color: #222222;
    text-decoration: none;
    font-size: 2rem;
    font-family: consolasregular;
    color: #f1f1f1;
    padding: 10 15;  

    border-width: 2;
    border-style: solid;
    border-color: #f1f1f1;
    border-radius: 10px / 10px;
    transition: 0.4s;
}
  
.general-button:hover {  
    border-color: #6ea1ff;
    color: #6ea1ff;
    text-decoration: none;
}

p.email {
    font-size: 2rem;
}

/* -------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------ COOL STUFF -------------------------------------------------*/
/* -------------------------------------------------------------------------------------------------------------*/

.dropdown-button {  
    height: 35px; 
    width: 35px;
    background-color: #222222;
    text-decoration: none;
    font-size: 18;
    font-family: consolasregular;
    color: #f1f1f1;
    padding: 0 0;  

    top: 25px;
    left: 10px;
    position: relative;

    border-width: 2;
    border-style: solid;
    border-color: #f1f1f1;
    border-radius: 10px;
    transition: 0.4s;
}
  
.dropdown-button:hover {  
    border-color: #afc9f8;
    color: #afc9f8;
    text-decoration: none;
}

.cool-stuff-section {
    display: flex; 
    flex-flow: row;
}