* {
    margin:0;
    padding:0;
    z-index: 1;
    color: white;
    box-sizing: border-box;
}

canvas {
    z-index: 0;
    position: absolute;
    background-color: black;
    top: 0;
    left: 0;
}

body{
    display: flex;
    background-color: black;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

#banner{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    height: max-content;
    width: fit-content;
}

#banner > h1 {
    text-align: center;
}

#banner > span {
    display: flex;
    flex-wrap: column;
    justify-content: space-around;
    width: 100%;
}

#container{
    padding: 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    height: 100%;
    width: 100%;
    grid-gap: 30px;
}

#top-1 {
    grid-area: top-1;
}

#top-2 {
    grid-area: top-2;
}

#left{
    display: grid;
    grid-gap: 30px;
    grid-template-areas: 
    'top-1 top-2'
    'bottom bottom';
    grid-template-columns: auto auto;
    grid-template-rows: 1fr 2fr;
}

#right {
    background-color: rgba(0,0,0,0.4);
    text-align: center;
    border: 1px solid blue;
}

.top {
    background-color: rgba(0,0,0,0.4);
    padding: 10px;
    text-align: center;
    border: 1px solid red;

}

#bottom{
    background-color: rgba(0,0,0,0.4);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid orange;
    grid-area: bottom;

}
ul {
    list-style: none;
}

li {
    margin-bottom: 15px;
}

 #ballInput {
     display: block;
     margin-left: 5px;
     width: 100px;
     height: max-content;
     align-self: center;
     background-color: rgba(0,0,0,0.2);
     text-align: center;
     color: greenyellow;
     border:dotted white;
     border-style: dotted 1px white;
     
 }

 #inputContainer {
     margin-top: 10px;
     display: flex;
     justify-content: center;
     width: 100%;
 }

 ::placeholder {
    color: greenyellow;
    opacity: 0.5;
}
  
::-ms-input-placeholder { /* Edge 12 -18 */
    color: greenyellow;
    opacity: 0.5;
}

#link {
    color: blue;
    position: absolute;
    bottom: 15px; 
    left: 15px;
}
