
@import url('https://fonts.googleapis.com/css2?family=Coral+Pixels&display=swap');



:root {
    --background-color: #fff;
    --secondary-color: #F0E68C;
    --primary-color: #FF6347;
    --accent-color: #7f99c4;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
    font-family: "Coral Pixels";
}
body {
    background: var(--background-color);
}

h1 {
    text-align: center;
    margin-top: 50px;
    color: var(--primary-color);
    font-family: 'Coral Pixels';
}
p {
    text-align: center;
}

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

.box {
    width: 400px;
    height: 600px;
    background: var(--secondary-color);
    background-color: #fdf5ac7c;
    border: 5px rgb(72, 194, 235);
    border-radius: 20px;
    box-shadow: 4px 6px 10px #a8990d;
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(7, 37, 47);
}
input {
    width: 100%;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: #fff;
    text-align: center;
    font-size: 12px;
}
label {
    color: var(--accent-color);
    font-family: "Coral Pixels";
}
#result {
    color: var(--primary-color);
}

button {
    background-color: #FF6347;
    border: none;
    border-radius: 15px;
    padding: 10px 30px;
    font-size: 25px;
    margin: 10px;
    color: #fff;
}
button:hover {
    background-color: #ee2b09;
}
button:active {
    background-color: #f79482;
}