* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

p, h1, h2, h3, h4, h5, h6 {
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Maven Pro', sans-serif;
  margin-top: 0;
  padding: 0;
  background-color: whitesmoke;
  position: relative
}

html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  box-shadow: inset 0 0 0 0 black;
  color: black;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  border-radius: 5px;
}

a:link, a:visited {
  color: black;
  text-align: center;
  display: inline;
}

a:hover {
  box-shadow: inset 450px 0 0 0 black;
  color: white;
}

u {    
  border-bottom: 4px dashed #f15a24;
  text-decoration: none;
}

.grow { 
  transition: all .2s ease-in-out; 
}
  
.grow:hover { 
  transform: scale(1.1); 
}