
* {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

:root {
    --primary: rgb(255, 198, 43);
    --text: rgb(255, 255, 255);
    --background: rgb(22, 100, 48);
}

html, body {
    height: 100%;
    margin: 0;
    background-color: var(--background);
    color: var(--text);
}


button {
    font-size: 1.5em;
    width: 5em;
    border: none;   
    cursor: pointer;
    background-color: var(--primary);
    color: rgb(0,0,0)
}

input {
    font-size: 1.5em;
    width: 20em;
    border: none;
    padding: 0.5em;
}

form {
    display: flex; 
    justify-content: center;
}

#top-banner {
    background-color: var(--background);
    text-align: center;
    color: var(--text);
    height: 100%;
    align-content: center;
}

#results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#top-banner h1 {
    margin: 0 0 2em 0;
}

table {
    background-color: white;
    color:black;

    width: 500px;
}

td, th, table {
    border: 1px solid gray;
}

#top-banner button:hover {
    background-color: rgb(63, 63, 63);      
}

p {
    padding: 1em;
    margin: 0;
}

a {
    color: var(--primary)
}