*{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
.nav{
    width: auto;
    height: 50px;
    position: fixed;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: opacity 0.5s;
    background: linear-gradient(to right, rgb(79, 7, 214), rgb(255, 0, 0));
    padding: 10px;
    border-radius: 10px;
    border: 3px solid rgb(255, 255, 255);
}
h1{
    font-size: 15px;
    color: white;
    margin: 5px;
    font-style: italic
}
.nav div, button, input{
    margin: 5px;
}
.nav:hover{
    cursor: pointer;
}
button:hover{
    cursor: pointer;
    background-color: skyblue;
    transition: 0.2s;
    color: black;
    font-style: italic;
}
.clr{
    height: 35px;
    width: 35px;
    background-color: white;
    border-radius: 50%;
    border: 3px solid white;
    transition: transform 0.5s;
}
.clr:hover{
    transform: scale(1.2);
}
.clr:nth-child(1){
background-color: black;
}
.clr:nth-child(2){
    background-color: black;
}.clr:nth-child(3){
    background-color: red;
}.clr:nth-child(4){
    background-color: orange;
}.clr:nth-child(5){
    background-color: blue;
}.clr:nth-child(6){
    background-color: purple;
}.clr:nth-child(7){
    background-color: yellowgreen;
}.clr:nth-child(8){
    background-color: yellow;
    border: 3px solid black;
}
button{
    border: none;
    outline: none;
    padding: .6em 1em;
    background-color: green;
    color: #fff;
    border: 3px solid white;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
}
.save{
    background-color: orange;
    color: black;
}
input[type="color"]{
    width: 60px;
    height: 40px;
}
#ageOutputId{
    color: white;
    font-weight: bold;
    font-size: 15px;
}
#ageInputId{
    background: linear-gradient(to right, #000428 0%, #004e92 100%);
    height: 7px;
    outline: none;
    cursor: ew-resize;
    border-radius: 5px;
    border: 3px solid white;
    accent-color: white;
}
.emoji{
    font-size: 40px;
    padding-bottom: 10px;
}