body {

            font-family: sans-serif;
            margin: 0;

            /* you can delete the line below if you'd prefer to not use an image
            background-size: 65px; */
            color: #fceaff;
            background-image: url('assets/vgc_background.jpg');
            background-repeat: repeat;
            background-size: 100%;
}





*{
        box-sizing: border-box;
}


#container {
    max-width: 900px;
    margin: 0 auto;
}


#header {
    width:100%;
    height:0px;
    display: flex;

}
#navbar {
    height: 40px;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    background-color: #000000;
    /* navbar color */
    width: 100%;




    
}
#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}
#navbar li {
    padding-top: 10px;
}
#navbar li a {
    color: #ffffff;     
    /* navbar text color */
    font-weight: 800;
    text-decoration: none;
     /* this removes the underline */
}
#navbar li a:hover {
    color: #a49cba;
    text-decoration: underline;
}

















#scrollHeader {
    background-color: black;
    height: 92px;
    width: 100%;
    color: brown;
    margin: 0;
    padding: 0;

}


#flex{
    display: flex;
    justify-content: center;
    align-items: center;
}




main {
        border: 1px solid white;
        text-align: center;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 900px;
        min-height: 800px;


        

}

#team_viewer{
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin: 0;
    padding: 0;
    justify-items: center;
    align-items: center;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    

}



.pokegif{
    height:150px;


}
#pastebox {
    border-bottom: 1px solid white;
}

a {
    color:rgb(79, 0, 124)
}
a:hover {
    color:white;
    text-decoration: underline;
}