body
{
    background-color: black;
    margin:0;
}

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

#greenMan
{
    height:150px; 
    width:150px; 
    margin:18% auto 30px; 
    display:block;
}

h1
{
    font-family: Arial, Helvetica, sans-serif;
    margin: 80px auto 20px;
    color: white;
}

main
{
    margin: 0 auto;
    border-left:2px white solid;
    border-right:2px white solid;
    width: 60%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    min-height: 93vh;
    padding: 10px;
}

#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;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    height: 1.636vw;
}
a
{
    text-decoration: none;
    color:white;
    cursor: pointer;
    transition: font-size 0.2s;
    
}
a:hover
{
    font-size: 30px;
}

.songContainer
{
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

.title
{
    width: 500px;

}

.info
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 23px;
}

p
{
    width: 580px;
    margin-top: 0;
    
}

svg:hover
{
    cursor:pointer;
}

rect
{
    display: none;
    fill: white;
}





polygon
{
    fill:white;
}

@media only screen and (max-width: 1000px) {
    #nav
    {
        height: 3vw;
    }
}

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

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

    .title
    {
        text-align: left;
    }

    p
    {
        text-align: left;
    }

}

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

    #nav
    {
        font-size: 20px;
    }

    .title
    {
        width: initial;
    }    

    .songContainer
    {
        justify-content: space-between;
    }
}