body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-image: url('assets/background.jpg');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center; 
    font-family: 'Arial', sans-serif;
    color: #333333;
}

.Heading {
    background-color: #444444;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.Heading img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.Heading-content {
    flex-grow: 1;
}

.Input_Div {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.Input_Div label {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.Input_Div input {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

.Input_Div input:focus {
    border-color: #888888;
}

.Result {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.Result label {
    font-size: 1.2em;
    font-weight: 600;
    color: #444444;
}

button {
    background-color: #888888;
    color: white;
    padding: 10px 20px;
    border: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #777777;
    transform: scale(1.05);
}

button:active {
    background-color: #666666;
}
