/*font-family: 'Roboto Condensed', sans-serif; // main font
font-family: 'Staatliches', cursive; // logo font
*/

:root {
    --main-accent-color: #0FDCEB;
    --next-accent-color: white;
}
html {
    cursor: url('http://cur.cursors-4u.net/food/foo-6/foo515.cur'), auto;
}
a {
    color: #2d2d2d;
    text-decoration: none;
    cursor: crosshair;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
}
a:hover {
    color: var(--next-accent-color);
    font-weight: bold;
    text-decoration: underline;
    cursor: crosshair;
}
body {
    background-color: gainsboro;
    height: 100vh;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    overflow-x: hidden;
    font-family: 'Roboto Condensed', sans-serif;
}

#top-head{
    font-family: 'Staatliches', cursive;
    display: flex;
    justify-content: center;
    font-size: 310%;
    color: white;
}

.content{
    /*display: flex;
    justify-content: center;*/
}

.up{
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 0;
    padding-bottom: 5px;
    width: inherit;
    text-align: center;
}
.salemObj { /* SALEM OBJECT */
  margin: 10px;
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0FDCEB;
  cursor: crosshair;
  box-shadow: 0 0 0 rgba(15,220,235, 0.4);
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(15,220,235, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(15,220,235, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(15,220,235, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(15,220,235, 0.4);
    box-shadow: 0 0 0 0 rgba(15,220,235, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(15,220,235, 0);
      box-shadow: 0 0 0 10px rgba(15,220,235, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(15,220,235, 0);
      box-shadow: 0 0 0 0 rgba(15,220,235, 0);
  }
}

.middle{
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 0;
  margin-bottom: 0;
    padding: 5px;
    width: inherit;
    font-size: 20px;
}
#salem { /* display Salem's response */
    color: black;
}
#user { /* display user input */
  color: var(--next-accent-color);
  display: flex;
  justify-content: flex-end;
  max-height: 30%;
}
#magnitide {  /* display magnitude of response */

}

.bottom {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 5%;
  width: 100%;
}

/* footer */
.footer {
    position: fixed;
    bottom: 0;
}
.footer p {
    text-align: center;
    font-size: 11px;
}
