html, body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}


.container {
    width: 100%;
    height: 20%;
    display: block;
    margin: 0 auto;
    padding: 0px;
}

.container div {
    text-align: center; 
}

h1 {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 100px;
      margin: 0;
      text-align: center;
      -moz-user-select: -moz-none;
      -khtml-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: default;
}

.logo {
    color: #1B95E0;
    font-weight: 400;
    text-transform: uppercase;
}

.btn {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    background: #EEEEEE;
    padding: 0;
    margin: 2px;
    border: 1px solid #EEEEEE;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
}

#msg {
    color: red;
    font-size: 20px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.btn:hover {
    background-color: #EEEEEE;
    border: 1px solid #CCCCCC;
    color: #333;
}

.btn:focus {
    outline: none;
    border: 1px solid #1B95E0;
}

.results {
    display: none;
    width: 70%;
    margin: auto;
    margin-top: 80px;
}

.resultBox a {
    text-decoration: none;
    color: #333;
    margin: 5px;
}

.resultBox p {
    padding: 10px 20px;
    margin: auto;
    font-family: 'Nunito', sans-serif;
}

.eachBox {
    border: 1px solid #E0E0E0;
    border-left: 5px solid #333;
    box-shadow: 0px 1px 2px #E0E0E0;
    transition: 0.1s linear;
    -webkit-transition: 0.1s linear;
    -moz-transition: 0.1s linear;
    -o-transition: 0.1s linear;

}

.eachBox:hover {
    box-shadow: 2px 2px 3px #E0E0E0, -2px 2px 3px #E0E0E0;
    border-left: 10px solid #1B95E0;
}

@media screen and (max-width: 768px){
.container {
    width: 80%;
    height: 20%;
    display: block;
    margin: 0 auto;
    padding: 0px;
}

.results {
    width: 90%;
    margin-top: 80px;
}
}
