#navbar {
    display: flex;
    background: rgb(2,0,36);
    background: linear-gradient(42deg, rgba(2,0,36,1) 0%, rgba(36,121,9,1) 53%, rgba(49,255,0,1) 100%);
    border-radius: 5px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width:96%;
    height:100%;
}
#navbarContainer{
    display: flex;
    width:100%;
    height:17%;
    justify-content: center;
    align-items: center;
    margin:10px;;
    position: fixed;
}
#navbar > a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 20px;
    text-decoration: none;
}
#bigtext{
    font-size: 25px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
    color:#1dc460;
}
#footer{
    background-color:grey;
    display:flex;
    position:absolute;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 10%;
}
body{
    margin:0;
    /* ask cactus for a nice background color (or if he just wants white) */
    /* this ones jut some temporary shit i whipped up on a css gradient maker */
    background: rgb(34,246,231);
    background: linear-gradient(42deg, rgba(34,246,231,1) 0%, rgba(10,218,57,1) 46%, rgba(16,125,37,1) 100%);
}
p {
    color: white;
    font-family: "Raleway", "Arial", sans-serif;
}
#footerText {
    color:black;
    font-size: 10px;
}
a {
    color: white;
    font-family: "Raleway", "Arial", sans-serif;
}
#copyIp{
    display: flex;
    flex-direction: row;
    height:15px;
    margin-left:60px;
}

#copyIcon{
    font-size:7px;
    z-index: 2;
}
#copyButton{
    background-color: #fc9e2a;
    border-radius:3px;
    display:flex;
    justify-content: center;
    align-items: center;
    height:15px;
}
#ip{
    height:15px;
    width: 100px;
}
input{
    font-family: "Raleway", "Arial", sans-serif;
}
#discord{
    color: #5865F2
}
#aboutText{
    border-radius: 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70%;
    width:90%;
    z-index: 2;
    padding: 20px;
}
#aboutP{
    color:black;
}
#centerThing{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}