.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #333;
    color: aliceblue;
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-banner {
    display: flex;
    align-items: center;
}

#banner {
    width: 300px;
}

#logo {
    height: 56px;
    width: 56px;
}

#crypto-name {
    font-weight: bold;
    font-size: 24px;
}

#result-container {
    text-align: left;
    word-wrap: anywhere;
}

#result-btns {
    text-align: center;
}

input, button {
    margin: 5px;
    border-radius: 0.3em;
}

input {
    min-width: 300px;
    line-height: 25px;
    border-width: 0px;
    color: whitesmoke;
    background-color: #666;
    padding: 3px;
}

button {
    padding: 8.5px;
    border-style: solid;
    border-width: 0;
    background-color: #10990c;
    color: white;
    cursor: pointer;
    margin: 20px 2px;
}

button:hover {
    outline: thin solid #10b90c;
    background-color: #10b90c;
}

select {
    width: 150px;
    margin: 10px;
}

a {
    color: darkkhaki;
  }

a:hover {
    cursor: pointer;
}

a:active {
    color: #10b90c;
}

a:visited {
    color: darkgoldenrod;
}