html{
    text-align: center;
}

li{
    display: inline-block;
    width: 30%;
    margin:10px;
    min-width: 145px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 5px dimgray;
}

li h4{
    text-transform: capitalize;
}

ul{
    width: 100%;
    padding-left: 0px;
}

header{
    width: 100%;
    /* background-color: rgb(59,139,182); */
    background:linear-gradient( 180deg,
    rgb(32, 92, 124)5%, 
    rgb(14, 154, 179)50%) fixed, no-repeat;
    color: white;
    padding-top: 25px;
    /* padding-bottom: 1px; */
    margin-bottom: 15px;
    border-bottom: 6px solid gold;
}
#headerText{
    width:75%;
    margin: auto;
    text-align: center;
    text-shadow: 0px 0px 8px rgb(32, 92, 124);
}

#headerText h1{
    font-family: 'Press Start 2P', sans-serif;
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px 0px rgb(23, 70, 95);
}

button{
    border-radius: 5px;
    border: 2px solid rgb(59,139,182);
    background-color: rgb(59,139,182);
    color: white;
    display: inline-block;
}
button:hover{
    box-shadow: 0px 0px 5px dimgray;
}
#newTeam{
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline;
}

#newTeam p{
    display: inline-block;
}

hr{
    border-top: 2px solid;
}