/* Main css style.*/

@import url('https://fonts.googleapis.com/css?family=Quicksand|K2D');


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

p, a, h1, h2 {
  font-family: 'K2D', sans-serif;
}

h3 {
  font-family: 'Quicksand', serif;
}

div {
  width: 100%;
}



#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    text-decoration: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.2); /* Set a background color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 25px; /* Some padding */
    border-radius: 300px; /* Rounded corners */
    -webkit-transition: background-color 0.25s; /* Safari */
    transition: background-color 0.25s;
}

#myBtn:hover {
    background-color: rgba(0, 0, 0, 0.6); /* Add a dark-grey background on hover */
}

#myBtn img {
  height: 1em;
}
