* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: #dedada;
    display: grid;
    justify-content: center;
    align-content: center;
    font-family: 'Roboto', sans-serif;
    
}

.container {
    position: relative;
    width: 830px;
    height: 570px;
    border: 2px solid rgb(204, 204, 204);
    background-color: rgb(49, 49, 49);
    border-radius: 40px;
    box-shadow: 4px 6px 12px -3px black, -4px -6px 12px -3px rgb(181, 181, 181);
    overflow: hidden;
}

.screen {
    background-color: rgb(255, 255, 255);
    position: absolute;
    inset: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.btns_navigation {
    width: 65px;
    height: 303px;
    /* background: #333; */
    background-image: linear-gradient(rgba(255, 92, 255, 0.812), rgba(0, 234, 255, 0.615));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    position: absolute;
    transform: translateY(-50%);
    top: 46%;
    left: 18px;
    border-radius: 43px;
}
button, span{
    /* border: 1px solid rgb(161, 161, 161); */
    border: none;
    padding: 9px 13px;
    font-size: 1.1rem;
    background-color: #ffffff;
    color: rgb(111, 111, 111);
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
}
span {
    padding: 10px;
}
input[type="color"] {
    width: 40px;
    height: 40px;
    padding: 5px;
    /* overflow: hidden; */
    outline: none;
    /* -webkit-appearance: none; */
    border-radius: 50%;
    border: none;
}