main {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: rgb(241, 241, 241);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.215);
    width: 80%;
    max-width: 600px;
}

.color-box {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #ffffff;
}

.color-container {
    display: flex;
    justify-content: center;
}

.color-details {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

input[type="color"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 50%;
    transition: background-color 0.3s ease;
    height: 60px;
    background-color: transparent;
}

input[type="color"]:active, input[type="color"]:focus {
    border: 2px solid #ccc;
}

input[type="color"]:hover {
    opacity: 0.8;
}

#color-label {
    font-weight: bold;
    font-size: large;
}
