@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

 :root {
    background-color: lightgoldenrodyellow;
    --primary-color: green;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a {
    text-decoration: none;
    color: green;
}

li {
    list-style: none;
}


/* main */

main {
    text-align: center;
    margin: 3rem;
}

h2 {
    font-size: xx-large;
    margin: 2rem;
}

.input-label {
    display: block;
    font-size: large;
    font-weight: light;
}

.input {
    font-size: 14px;
    outline: #fff;
    padding: 0.6rem 1rem;
    margin: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    width: 100%;
    max-width: 258px;
}

#show-btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-size: large;
    cursor: pointer;
    outline: #fff;
    margin: auto;
    display: block;
}

#result {
    font-size: x-large;
    margin: 2rem 0;
}


/* footer */

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

footer p {
    font-size: large;
    text-align: center;
}

.footer-list {
    margin: 1rem;
}

a,
img,
li {
    display: inline;
    margin: 2rem;
}