@font-face{
    font-family: windowsFont;
    src: url("assets/fonts/windows-levi.ttf")
}

body{
    background-color: #00807F;
}

p, dl, header, figcaption, td, th{
    font-family: windowsFont;
}

footer{
    background-color: #adb1b1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5%;

}

footer p{
    height: auto;
}



@keyframes hoverJump {
    0%{
        padding-bottom: 0%;
    }
    70%{
        transform: scale(1.3);
    }
    100%{
        padding-bottom: 0%;
    }
}



@media (min-width: 1200px ){

    /* Navigation */
    
    nav{
        display: grid;
        grid-template-columns: repeat(2, 0.3fr);
        position: relative;
        max-width: 20%;
    }
    
    nav > a{
        color: white;
        text-decoration: none;
    }
    
    nav > a > img{
        width: 100px;
        margin-bottom: -30px;
        clear:both;


    }

    nav > a > img:hover {
        animation-duration: 0.5s;
        animation-name: hoverJump;
        animation-timing-function: ease-in;
        animation-delay: 0s;
        animation-iteration-count: 1;
    }

    
    
    nav > a > p{
        align-items: center;
    }
    
    
    
    /* Notepad Styling */
    .notepad {
        width: 15%;
        background-color: white;
        border: 10px solid #afb1b1;
        box-sizing: border-box;
        overflow-x: auto;
        margin-left: 10%;
    }
    
    .notepad header {
        background-color: blue;
    }
    
    .notepad > header {
        color: white;
    }
    
    header > h5 {
        margin: 0;
        padding: 0;
    }
    
    .article-container {
        display: flex;
        position: absolute;
        margin-top: -12%;
        width: 80%;
        left: 10%;
        margin-left: 5%;

    }
    
    .article-container .notepad {
        margin-left: 10%;
        width: 60%;

    }
    
    .notepad  p {
        padding: 0% 1% 1% 1%;
    }
    
    .notepad img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Homepage Notepads */
    .article-container div:nth-child(1)  {
        height: 10%;
    }
    
    .article-container div:nth-child(2) {
        height: 10%;
    }
    
    .article-container div:nth-child(3) {

        height: 10%;
        
    }

    caption{
        justify-content: center;
    }
    
    #timeline-table{
        width: 100%;
    }
    
    table{
        border-collapse: collapse;
        caption-side: top;
        table-layout: auto;
        empty-cells: hide;
    }

    th, td{
        text-align: left;
        padding: 5px;
    }

    tr:nth-child(odd){
        background-color: rgb(231, 229, 229);
    }

    tr{
        border-bottom: 1px solid;
    }

    form{
        justify-content: center;
        
        
        
    }

    #linux-form{
        display: flex;
        width: 150%;
        
    }

    fieldset:nth-child(odd){
        background: rgb(214, 219, 245);
        margin-left: 25%;
        width: 50%;
    }

    fieldset:nth-child(even){
        margin-left: 5px;
        margin-right: 5px;
    }

    fieldset{
        font-size: 12px;
        background: rgb(224, 245, 214);
        margin: 1%;
        border:  3px solid rgb(96, 91, 100);
        border-radius: 10px;
        
        
        
    }

    #software-usage-table{
        column-count: 3;
        height: 10%;
    }
    
    #software-usage-table > label{
        break-inside: avoid-column;
    }

    .dropdown {
        margin-bottom: 120%;
    }

    .dropdown > li {
        
        display:inline-block;
        position: relative;
        
      }

    .dropdown > li > ul {
    display: none;
    width: 50%;
    
    
    }
    

    .dropdown > li:hover > ul {
    position: absolute;
    list-style-type: none;
    display: block;
    
    left: 15%;
    width: 80%;
    padding: 10px;
    margin-top: -13%;
    background-color: white;
    border: 10px solid #afb1b1;
    
    }

    .dropdown > li:hover > ul > li{
        margin-top: 10px;
    }

    .dropdown > li > ul > li > a{
        color:#075285;
    }
}

@media (max-width: 1200px ) and (min-width: 992px){

    /* Navigation */
    
    nav{
        display: grid;
        grid-template-columns: repeat(2, 0.3fr);
        position: absolute;
        max-width: 30%;
        
    }
    
    nav > a{
        color: white;
        text-decoration: none;
    }
    
    nav > a > img{
        width: 100px;
        margin-bottom: -30px;
        clear:both;


    }

    nav > a > img:hover {
        animation-duration: 0.5s;
        animation-name: hoverJump;
        animation-timing-function: ease-in;
        animation-delay: 0s;
        animation-iteration-count: 1;
    }

    
    
    nav > a > p{
        align-items: center;
    }
    
    
    
    /* Notepad Styling */
    .notepad {
        width: 15%;
        background-color: white;
        border: 10px solid #afb1b1;
        box-sizing: border-box;
        overflow-x: auto;
    }
    
    .notepad header {
        background-color: blue;
    }
    
    .notepad > header {
        color: white;
    }
    
    header > h5 {
        margin: 0;
        padding: 0;
    }
    
    .article-container {
        display: flex;
        position: absolute;
        width: 80%;
        left: 10%;
        margin-left: 20%;

    }
    
    .article-container .notepad {
        margin-left: 10%;
        width: 90%;

    }
    
    .notepad  p {
        padding: 0% 1% 1% 1%;
    }
    
    .notepad img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Homepage Notepads */
    .article-container div:nth-child(1)  {
        height: 10%;
    }
    
    .article-container div:nth-child(2) {
        height: 10%;
    }
    
    .article-container div:nth-child(3) {

        height: 10%;
        
    }

    caption{
        justify-content: center;
    }
    
    #timeline-table{
        width: 100%;
    }
    
    table{
        border-collapse: collapse;
        caption-side: top;
        table-layout: auto;
        empty-cells: hide;
    }

    th, td{
        text-align: left;
        padding: 5px;
    }

    tr:nth-child(odd){
        background-color: rgb(231, 229, 229);
    }

    tr{
        border-bottom: 1px solid;
    }

    form{
        justify-content: center;
        
        
        
    }

    #linux-form{
        display: flex;
        width: 150%;
        
    }

    fieldset:nth-child(odd){
        background: rgb(214, 219, 245);
        margin-left: 25%;
        width: 50%;
    }

    fieldset:nth-child(even){
        margin-left: 5px;
        margin-right: 5px;
    }

    fieldset{
        font-size: 12px;
        background: rgb(224, 245, 214);
        margin: 1%;
        border:  3px solid rgb(96, 91, 100);
        border-radius: 10px;
        
        
        
    }

    #software-usage-table{
        column-count: 3;
        height: 10%;
    }
    
    #software-usage-table > label{
        break-inside: avoid-column;
    }

    .dropdown {
        margin-bottom: 120%;
    }

    .dropdown > li {
        
        display:inline-block;
        position: relative;
        
      }

    .dropdown > li > ul {
    display: none;
    width: 50%;
    
    
    }
    

    .dropdown > li:hover > ul {
        position: absolute;
        list-style-type: none;
        display: block;
        
        left: 15%;
        width: 80%;
        padding: 10px;
        margin-top: -13%;
        background-color: white;
        border: 10px solid #afb1b1;
        
        }

    .dropdown > li:hover > ul > li{
        margin-top: 10px;
    }

    .dropdown > li > ul > li > a{
        color:#075285;
    }
}


@media (max-width: 992px) and (min-width: 768px) {

    
    /* Navigation */
    
    nav{
        display: grid;
        grid-template-columns: repeat(2, 0.3fr);
        position: relative;
        max-width: 20%;
    
    }
    
    nav > a{
        color: rgb(255, 255, 255);
        text-decoration: none;
    }
    
    nav > a > img{
        width: 100px;
        margin-bottom: -30px;
        clear:both;
    }

    nav > a > img:hover {
        animation-duration: 0.5s;
        animation-name: hoverJump;
        animation-timing-function: ease-in;
        animation-delay: 0s;
        animation-iteration-count: 1;
    }

    
    
    
    nav > a > p{
        align-items: center;
    }
    
    
    
    /* Notepad Styling */
    .notepad{
        width: 15%;
        background-color: white;
        border: 10px solid #afb1b1;
        clear:both;
        box-sizing: border-box;
        overflow-y:auto;
        overflow-x:auto;
    }
    
    .notepad header{
        background-color: blue;
    
    }
    
    .notepad > header{
        color: white;
    }
    
    header > h5{
        margin: 0;
        padding: 0;
    }
    
    
    .article-container{
        display: flex;
        flex-wrap: wrap;
        justify-content:center;
        margin-bottom: 10%;
    
    }
    
    .article-container .notepad{
        margin-left: 10%;
        width: 30%;
        height:auto;
        display: inline-block;
    }
    
    .notepad > p{
        padding: 0% 1% 1% 1%;
        font-size: 12px;
    }
    
    .notepad img{
        width: 100%;
        height: auto;
        display: block;
    }

    caption{
        justify-content: center;
    }
    
    #timeline-table{
        width:50%;
        height:60%;

    }

    table{
        border-collapse: collapse;
        caption-side: top;
        table-layout: auto;
        empty-cells: hide;
    }

    th, td{
        text-align: left;
        padding: 5px;
    }

    tr:nth-child(odd){
        background-color: rgb(231, 229, 229);
    }

    tr{
        border-bottom: 1px solid;
    }

    #form-pad{
        width: 50%;
    }

    form{
        justify-content: center;
        
    }



    fieldset:nth-child(odd){
        background: rgb(214, 219, 245);
        margin-left: 25%;
        width: 50%;
    }

    fieldset:nth-child(even){
        margin-left: 5px;
        margin-right: 5px;
    }

    fieldset{
        font-size: 12px;
        background: rgb(224, 245, 214);
        margin: 1%;
        border:  3px solid rgb(96, 91, 100);
        border-radius: 10px;
        
        
        
    }

    #software-usage-table{
        column-count: 3;
        
    }
    
    #software-usage-table > label{
        break-inside: avoid-column;
    }


    .dropdown > li {
        
        display:inline-block;
        position: relative;
        margin-bottom: 20%;
      }

    .dropdown > li > ul {
    display: none;
    width: 20%;
    
    
    }
    


    .dropdown > li:hover > ul {
        position: absolute;
        list-style-type: none;
        display: block;
        
        left: 15%;
        width: 80%;
        padding: 10px;
        margin-top: -13%;
        background-color: white;
        border: 10px solid #afb1b1;
        
        }

    .dropdown > li:hover > ul > li{
        margin-top: 10px;
    }

    .dropdown > li > ul > li > a{
        color:#075285;
    }

}

@media (max-width: 768px) {
    

    /* Navigation */
    
    nav{
        display: grid;
        grid-template-columns: repeat(5, 0.3fr);
        position: relative;
        max-width: 20%;
        margin: auto;
        justify-content: center;
        
    
    }
    
    nav > a{
        color: rgb(255, 255, 255);
        text-decoration: none;
    }
    
    nav > a > img{
        width: 70px;
        margin-bottom: -30px;
        clear:both;
    }

    nav > a > img:hover {
        animation-duration: 0.5s;
        animation-name: hoverJump;
        animation-timing-function: ease-in;
        animation-delay: 0s;
        animation-iteration-count: 1;
    }

    
    
    
    nav > a > p{
        align-items: center;
    }
    
    
    
    /* Notepad Styling */
    .notepad{
        width: 15%;
        background-color: white;
        border: 10px solid #afb1b1;
        clear:both;
        box-sizing: border-box;
        overflow-y: auto;
        overflow-x: auto;
    }
    
    .notepad header{
        background-color: blue;
    
    }
    
    .notepad > header{
        color: white;
    }
    
    header > h5{
        margin: 0;
        padding: 0;
    }
    
    
    .article-container{
        display: flex;
        flex-wrap: wrap;
        justify-content:center;
        position: relative;
        top: 10%;
        
        flex-basis: auto;
        margin: auto;
    
    }



    .article-container .notepad{
        width: 80%;
        margin-bottom: 10%;
    }
    
    .notepad > p{
        padding: 0% 5% 5% 5%;
    }
    
    .notepad img{
        width: 100%;
        height: auto;
        display: block;
    }
    
    #timeline-table{
        width: 80%;
        height: 30%;
        margin-bottom: -40%;
    }
    caption{
        justify-content: center;
    }
    

    table{
        border-collapse: collapse;
        caption-side: top;
        table-layout: auto;
        empty-cells: hide;
    }

    th, td{
        text-align: left;
        padding: 5px;
    }

    tr:nth-child(odd){
        background-color: rgb(231, 229, 229);
    }

    tr{
        border-bottom: 1px solid;
    }

    #form-pad{
        width: 80%;
    }

    form{
        justify-content: center;
        
        
    }


    fieldset:nth-child(odd){
        background: rgb(214, 219, 245);
        margin-left: 25%;
        width: 50%;
    }

    fieldset:nth-child(even){
        margin-left: 5px;
        margin-right: 5px;
    }

    fieldset{
        font-size: 12px;
        background: rgb(224, 245, 214);
        margin: 1%;
        border:  3px solid rgb(96, 91, 100);
        border-radius: 10px;
        
        
        
    }
    #software-usage-table{
        column-count: 3;
        
    }
    
    #software-usage-table > label{
        break-inside: avoid-column;
    }


    .dropdown > li {
        
        display:inline-block;
        position: relative;
        margin-bottom: 50%;
      }

    .dropdown > li > ul {
    display: none;
    width: 10%;
    
    }
    

    .dropdown > li:hover > ul {
    position: absolute;
    list-style-type: none;
    display: block;
    width: 80%;


    background-color: white;
    border: 10px solid #afb1b1;
    

    
    
    }

    .dropdown > li:hover > ul > li{
        margin-top: 10px;
    }

    .dropdown > li > ul > li > a{
        color:#075285;
    }
    
}