body
{
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black; 
    margin:0; 
    display:flex; 
    flex-direction: column; 
    height: 123vh;
}

header
{
    flex-grow:0;
    flex-shrink:0; 
    position: sticky; 
    top: -15.8vw; 
    height: 24.92vw; 
    overflow: visible; 
    z-index: 0;
}

#nav
{
    display: flex;
    justify-content: center;
    gap: 18vw;
    font-size: 25px;
    align-items: center;
    color:white;
    background-color: black;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 5px 0;
    position: relative; 
    top: 15.8vw; 
    height: 3vw; 
    z-index: 3;
    border-bottom: 2px solid white;
}



#banner
{
    width: 100%;
}

a
{
    text-decoration: none;
    color:white;
    cursor: pointer;
    transition: font-size 0.2s;
    
}

#greenMan
{
    height:150px; 
    width:150px; 
    margin:0 auto; 
    display:block; 
    opacity:0;
}

a:hover
{
    font-size: 30px;
}

.textContainer
{
    width: 60%;
    margin: 0 auto;
    text-align: left;
    height:100%;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

main
{
    height: 100%;
    background-color: black; 
    color:white; 
    position: relative; 
    top: 15.8vw; 
    z-index: 1; 
}

#p1
{
    font-size:31px;
    font-weight: bold;
    margin-bottom:35px;
}

#p2
{
    font-size: 29px;
    margin-bottom: 45px;
}

#p3
{
    font-size: 26px;
}

#smallBanner
{
    display: none;
}


@media only screen and (max-width: 800px) {
    #nav
    {
        gap: 0;
        justify-content: space-around;
        top: 0;
        border-top: 2px solid white;
    }

    main
    {
        top: 0;
    }

    .textContainer
    {
        border: 0;
        width: 90%;
        padding: 10px;
        text-align: center;
    }

    #banner
    {
        display: none;
    }

    #smallBanner
    {
        display: block;
        width: 100%;
    }

    header
    {
        height: initial;
    }

    #greenMan
    {
        opacity: 1;
        margin-top: 1em;
    }
}

@media only screen and (max-width: 500px) {

    #nav
    {
        font-size: 20px;
    }
}