@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #172031;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}


h1 {
    letter-spacing: 0.1rem;
}


.container {
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    width: 20rem;
    height: 10rem;
    padding: 32px;
}

input[type="text"] {
    padding: 10px;
    border: none;
    border-radius: 8px;
    outline: none;
    margin-right: 15px;
}

input[type="color"]{
    background-color: white;
    border: none;
    border-radius: 5px;
    height: 40px;
    width: 40px;
    transition: .3s;
    cursor: pointer;
    transition: transform .3s;
}

input[type="color"]:hover {
    background-color: blueviolet;
    transform: scale(1.1);
}