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

/* Search CSS */
#search-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 3%;
    margin: 3vh auto;
    text-align: center;
}
#search-box h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 1%;
}
#s-input {
    padding: 2%;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid black;
    background-color: rgb(0, 0, 0, 0.05);
    transition: 0.3s;
}
#s-input:focus {
    background-color: white;
}

/* Results CSS */
#result-box {
    text-align: center;
    margin-top: 2vh;
}