*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body{
    background: black;
    
}

.game{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
    gap: 30px;

}

.title{
    color: white;
}

.input{
    border: none;
    outline: none;
    max-width: 200px;
    width: 100%;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 18px;
}

.btn{
    background: green;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
}


.game__box{
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 0 white;
    position: relative;
    background-color: rgb(30,30,30);
}
.ball{
    
    position: absolute;
}
.triangle{
    clip-path: polygon(50% 26%, 0% 100%, 100% 100%);
}
.square{
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}
.hz{
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}