
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-family: "Montserrat", sans-serif;
}
body {
  background: #eee;
  padding: 0 16px;
}

header {
  background-color: #f5ba13;
  margin: auto -16px;
  padding: 16px 32px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

header h1 {
  color: #fff;
  font-family: "McLaren", cursive;
  font-weight: 200;
}

footer {
  position: absolute;
  text-align: center;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}

footer p {
  color: #ccc;
}

.note{
    color: #fff;
    border: 1px solid black;
}

.y-col{
    color:  #f5ba13;
}

.bg-yellow{
    background-color:  #f5ba13;
}

.text-white{
    color: #fff;
}

.border-yellow{
    border: 2px solid #f5ba13;
    border-radius: 3px;
}

