/* Merriweather Black Font Styles */
.merriweather-black {
    font-family: "Merriweather", system-ui;
    font-weight: 900;
    font-style: normal;
}

.merriweather-black-italic {
    font-family: "Merriweather", system-ui;
    font-weight: 900;
    font-style: italic;
}

/* General Body Styling */
body {
    font-family: 'Merriweather', serif;
    margin: 20px;
}

h1, h2 {
    font-family: "Merriweather", system-ui; /* Apply Merriweather font */
    font-weight: 900;
}

h1 {
    font-size: 35px;
    color: #0d7dd4;
    margin-bottom: 20px;
    letter-spacing: normal; /* Removed letter spacing */
}

h2 {
    font-size: 25px; /* Increased font size for the result heading */
    color: #0d7dd4;
    margin-bottom: 20px;
}

input, button {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
}

input {
    border: 1px solid #0d7dd4;
    border-radius: 10px;
}

button {
    cursor: pointer;
    background-color: #0d7dd4;
    color: white;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
}

button:hover {
    background-color: #0b6fbb;
}

#results {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    background-color: #f0fdf9;
    border: 2px solid #0d7dd4;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#results.show {
    opacity: 1;
    transform: scale(1);
}

.input-group {
    margin-bottom: 20px;
}
