body{margin:0;padding: 0; background: #fafafa;}
a{
    text-decoration: none;
}
.outer_wrapper{
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background:#222;
    color:#888;
}
.header ul{
    display: flex;
    flex-direction: row;
}
.header ul li{
    padding: 10px 5px;
    list-style: none;
    margin: 0;
}
.header ul li a{
    color:#aaa;
    text-transform: uppercase;
    font-weight: bold;
    border:1px solid #2a2a2a;
    padding: 10px 20px;
    margin: 0;
    border-radius: 5px;
}
.header ul li a:hover{
    background: #1a1a1a;
    color:#fff;
}
.container{
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: scroll;
}
.footer{
    display: flex;
    flex-direction: row;
    justify-content: end;
    background:#333;
    color:#aaa;
    font-size: 10px;
    padding-right: 10px;
}


/* /////////////////////   SECTION   ///////////////////// */

.outer-section{
    border-bottom:3px dashed #ededed;
    margin:10px 20px;
    padding-top: 20px;
}
.outer-section>i{
    display: flex;
    flex-direction: column;
    font-size: 60px;
    text-align: center;
    color:#888;
    margin-bottom: 20px;
}
.outer-section h1{
    text-align: center;
    color:#dedede;
    text-transform: uppercase;
}

.section{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border:1px solid #eee;
    background:#fff;
    margin:20px;
    border-radius: 5px;
    transition: all 2s;

}
.section:hover{
    box-shadow: 0px 0px 5px 5px #eeeeee;
    border:1px solid #ddd;
    transition: all 2s;
}


.section h1{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #aaa;
    margin: 0px;
    margin-bottom: 20px;
}

.section ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.section ul li{
    list-style: none;
    display: block;
    width: 200px;
    border: 1px solid #dedede;
    padding: 0px;
    margin: 10px;
    background:#fafafa;
}

/* /////////////////////  END SECTION   ///////////////////// */

/* /////////////////////   TIMELINE   ///////////////////// */
.timeline{
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    min-width: 1650px;
}

.timeline-band{
    display: diplay;
    margin-top: 40px;
    height: 20px;
    background: #363;
    border-radius: 0 15px 15px 0;
}
.timeline-band .years{
    box-sizing: content-box;
    display: inline-block;
    border-left:2px dashed #ddd;
    padding-left: 10px;
    width: 100px;
    color:#fff;
}
.events{
    display: block;
    position: absolute;
    top:0px;
    padding-left:5px;
    border-left:1px solid #aaa;
    height: 40px;
}
#degree{left:35px;}

#travel{left:300px;background: rgba(111, 208, 216, 0.4); width:160px; border-right:1px solid #aaa;}

#covid{left:1060px; background: rgba(236, 8, 8, 0.4); width:270px; border-right:1px solid #aaa;}

#independant{left:1050px; top:20px; height:20px; background: rgba(220, 214, 116, 0.4); width:560px;}


/* /////////////////////  END TIMELINE   ///////////////////// */

/* /////////////////////   ITEM   ///////////////////// */

.item h2{
    font-size: 12px;
    color:#fff;
    background:#131;
    padding:10px;
    margin-top: 0px;
    text-transform: uppercase;
}

.item p{
    padding:10px;
}

/* /////////////////////  END ITEM   ///////////////////// */


.under_construction{
    font-size: 60px;
    color: #CCC;
}
.under_construction p{
    font-size: 14px;
    color: #CCC;
}
.menu-item i{
    margin-right: 10px;
}