* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cfffee;
}

.container {
    position: absolute;
    top: 5%;
    display: flex;
    justify-content: center;
    width: 500px;
    height: 90%;
    border: 5px solid #121826;
    z-index: -1;
}

.ball {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #0f12ad;
    border: 1px solid black;
    border-radius: 50%;
}

.controls {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: 4rem;
    flex-wrap: wrap;
    justify-content:space-between;
    top: 40%;
    right: 8rem;
    z-index: 1;
}

#reset, #values {
    font-size: 1rem;
    width: 6rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border-radius: 0.4rem;
    transition-duration: 30ms;
}

#reset:active {
    background-color: white;
}