/* The backround of the website */
.page
{
    background-color: darkslategray;
}

/* The menu overall */
.menu
{
    display: flex;
    
}

/* The menu buttons overall */
.menu > div
{
    display: none;
    padding-left: 5px;
}

/* The menu button individually*/
.menu > button
{
    width: 75px;
    background-color: lightgray;
    color: darkslategray;
    font-family: 'Segoe UI';
    font-size: 1em;
    font-weight: bold;
}

/* The menu button's hover */
.menu > button:hover
{
    background-color: whitesmoke;
    cursor: pointer;
}

/* The menu dropdown buttons*/
.menu > div > button
{
    width: 75px;
    background-color: lightgray;
    color: darkslategray;
    font-family: 'Segoe UI';
    font-size: 1em;
    font-weight: bold;
}

/* The menu dropdown buttons hover*/
.menu > div > button:hover
{
    background-color: whitesmoke;
    cursor: pointer;
}

/* The header text */
.page > h1
{
    color: lightgrey;
    font-family: 'Segoe UI';
    font-size: 3em;
    text-align: center;
}

/* The page button */
.page > button
{
    background-color: lightgray;
    color: darkslategray;
    font-family: 'Segoe UI';
    font-size: 2em;
    font-weight: bold;
    display: block;
    margin: 20px auto;
    width: fit-content;
}

/* The page button's hover */
.page > button:hover
{
    background-color: whitesmoke;
    cursor: pointer;
}

/* The image and text below this page's button*/
.page > div
{
    display: none;
    margin: 20px auto;
    width: fit-content;
    color: lightgrey;
    font-family: 'Impact';
    font-size: 2em;
    text-align: center;
}

/* The bottom Neurodivergent image*/
.imageNeurodivergent
{
    display: block;
    position: fixed;
    margin-left: 50%;
    translate: -50%;
    bottom: 0;
    padding: 90px;
    width: 300px;
    height: auto;
}

/* The bottom Neocities image*/
.imageNeocities
{
    display: block;
    position: fixed;
    margin-left: 50%;
    translate: -50%;
    bottom: 0;
    padding: 10px;
    width: 150px;
    height: auto;
}