body
{
    background-color: black;
}

header
{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 50px;
}

header h1
{
    color: #d2ab00;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    text-align: center;
    font-size: 4.5em;
}

header ul
{
    margin: 0;
    padding: 0;
}

header ul li
{
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: x-large;
}

header ul li a
{
    color: #d2ab00;
    text-decoration: underline;
}

header ul li a:hover, main .Project a:hover
{
    color: #ecc100;
}

main .Project
{
    margin: 25px;
}

main .Project img
{
    width: 250px;
    height: auto;
    border: 5px solid #d2ab00;
    align-self: center;
}

main .Project p
{
    color: #d2ab00;
    padding-top: 15px;
    margin: 0;
    text-decoration: none;
    font-size: large;
    
}

main .Project a
{
    color: #d2ab00;
    text-decoration: underline;
    font-size: large;
}

main .Project
{
    display: flex;
    flex-direction: column;
    text-align: center;
}

main
{
    padding-top: 50px;
}

main #JS_Section h2
{
    color: #d2ab00;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    text-align: center;
    font-size: 1.5em;
    padding-bottom: 10px;
}

@media (min-width: 1024px)
{
    main .Project img
    {
        width: 500px;
        height: auto;
    }

    main .Project a, main .Project p
    {
        font-size: x-large;
    }

    main #JS_Section h2
    {
        font-size: 2em;
    }
    
}


