body {
    font-family: Arial, sans-serif;
    background-color: #B8E2DC;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    max-width: 90vw;
    position: relative;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.logo {
    width: 100%; /* Set the width of the logo relative to its container */
    max-width: 750px; /* Set a maximum width for the logo */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Adjust margin for spacing */
}


input {
    padding: 8px;
    margin-bottom: 10px;
    width: 80%;
}

button {
    padding: 10px;
    background-color: #7DCCBD;
    color: #1C2B38;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#result {
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .logo {
        width: 100%;
        max-width: 200px;
    }

    #result {
        font-size: 20px; /* Increase font size for smaller screens */
    }
}
