:root {
    --mainWindow: #bfbfbf;
    --borderPrimary: #e0e0e0;
    --borderSecondary: #262626;
    --textColour: #000000;
    --activeTab: #134d7a;
}

.titleBar {
    font-size: 40px;
    font-family: Arial, sans-serif;
    text-align: center;
    
    a {
        img {
            max-width: 100px;
            min-width: 20px;
        }
    }
}

.navbar {
    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        border: 2px var(--borderPrimary) solid;
        border-right-color: var(--borderSecondary);
        border-bottom-color: var(--borderSecondary);
        overflow: hidden;
        background-color: var(--mainWindow);
    }
    li {
        float: left;

    }
    li a {
        font-size: 20px;
        display: block;
        color: #000000;
        text-decoration: none;
        padding: 5px 10px;
    }
    li a:hover {
        background-color: #3c00c0;
        color: #ffffff;
    }
    
    .selected {
        background-color: var(--activeTab);
        a {
            color: #ffffff;
        }
    }
    
    
}

body {
    margin: 10px;
    background: black;
    background: linear-gradient(180deg, rgb(0, 13, 255) 0%, rgb(12, 0, 44) 100%);
    background-size: auto;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body div:not(.navbar) {
    margin: auto;
    max-width: 1200px;
    border: 5px var(--borderPrimary) solid;
    border-right-color: var(--borderSecondary);
    border-bottom-color: var(--borderSecondary);
    background-color: var(--mainWindow);
    color: var(--textColour);
    padding: 5px;
}

.aboutMe {
    h1 {
        text-align: center;
    }

    img {
        width: 50%;
        max-width: 500px;
        min-width: 200px;
    }

    figcaption {
        padding-left: 5px;
    }
    
    p {
        padding-left: 35px;
    }
    
    h2 {
        padding-left: 30px;
    }
    
    ul {
        list-style-type: symbols(cyclic "➡");
        padding-left: 60px;
    }
    
}

.welcomePage {
    text-align: center;
    
    a {
        font-size: 20px;
        font-family: Arial, sans-serif;
        text-decoration: none;
    }
    
    td {
        
    }
}
