*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style Page Background and Center the Container */
body{
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #000428 0%, #004e92 60%, #00c6ff 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Container */
.container{
    background: #021b2e;
    padding: 30px;
    border-radius: 5px 50px;
    text-align: center;
    width: 400px;
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.7);
}

/* Heading */
h1{
    margin-bottom: 10px;
    color: #caf0ff;
}


p{
    margin: 10px 0;
    color: #5dc9e8;
}

/* Style Input Field */
input{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    background: #032840;
    color: #caf0ff;
    border-radius: 8px;
    border: 1px solid cyan;
    font-size: 16px;
}

/* Styling Button */
button{
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

#guessBtn{
    background: #00b4d8;
    color: #021b2e;
}

#resetBtn{
    background: #f4a261;
    color: #021b2e;
}

/* Button Hover Effect */
#guessBtn:hover{
    background-color: #156fd6;
    transform: scale(1.02);
}

#resetBtn:hover{
    background-color: #e87a20;
    transform: scale(1.02);
}

/* Message Text */
#message{
    font-weight: bold;
    margin-top: 15px;
    color: #f4a261;
}

/* Attempts */
#attempts{
    font-weight: bold;
    color: #f4a261;
}