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

body {
    background-color: #0a0e31;
    color: white;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}


.container {
    display: flex;
    flex-direction: column;
    /*border:#758E96 solid;*/
    margin: 0px auto;
    padding: 20px;
    max-width: 400px;
}

div {
    margin-top: 10px;
}

h3 {
    margin-top: 20px;
    text-align: center;
    letter-spacing: 1px;
}

span {
    text-align: center;
    margin-right: 30px;

}

p {
    text-align: center;
    color: #10B981;
}


.setting {
    font-size: 18px;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    height: 60px;
    border-radius: 5px;
    padding: 0 10px 0 10px;
    box-shadow: black;
}

.result {
    text-align: center;
    align-items: center;
}

.clipboard:hover {
    border: white solid;
    text-align: center;
}


.range-container {

    margin-top: 10px;
}

.range-label {
    font-family: 'Nunito', sans-serif;
    margin-right: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.range-value {
    color: #10B981;
    font-weight: bold;
}


#range-input {
    width: 100%;
}

input[type="checkbox"] {
    margin: 20px;

}

/* This is a CSS comment */



.button {
    margin-top: 40px;
    height: 60px;
    border-radius: 5px;
    border: none;
    /*background-color: #758E96;*/
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    letter-spacing: 1px;
    font-weight: bold;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    text-align: center;
}

.button:hover {
    border: white solid;
}

#button-img {
    width: 15px;

}

@media (max-width: 600px) {

    /* Adjust the width and margin for smaller screens */
    .container {
        width: 100%;
        margin: 20px 10px;
    }
}