*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: black;
    color: whitesmoke;
}

img,
picture,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

body {
    font-family: Arial, sans-serif;
    max-width: 400px;
    padding: 1rem;
    border: 1px solid whitesmoke;
    margin: 2rem auto;
    border-radius: 10px;
}

input {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    border: 1px solid whitesmoke;
    border-radius: 6px;
}

button {
    margin-top: 1rem;
    background: whitesmoke;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background: whitesmoke;
}

#result {
    margin: 1rem 0;
    font-weight: bold;
    text-align: center;
}

#see-also {
    border: solid 2px whitesmoke;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
}

a {
  color: rgb(255, 0, 255);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
