body{
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin:0;
    padding:0;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    text-align: center;
    background-color: #ffffff;
    padding:30px;
    border-radius: 12px;
    width: 400px;
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1{
    font-size: 2em;
    color: #333333;
    margin-bottom: 20px;
}

.color-picker{
    margin-bottom:20px;
}

#colorInput{
    width: 80px;
    height: 50px;
    border:none;
    cursor: pointer;
}
 p{
    font-size: 1.2em;
    color: #555555;
    margin: 10px 0; 
 }

#colorDisplay{
    width: 100%;
    height: 150px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}