@font-face {
  font-family: "GT";
  src: url("/font/GT\ Walsheim\ Regular.ttf") format("truetype");
}

@font-face {
  font-family: "GT Bold";
  src: url("/font/GT\ Walsheim\ Bold.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GT", sans-serif;
  scroll-behavior: smooth;
}

/*homepage styling---navbar and footer applicable to all pages*/
a {
  text-decoration: none;
}

p {
  opacity: 80%;
}

#go-top {
  position: fixed;
  bottom: 8%;
  right: 3.8%;
  width: 40px;
  height: 45px;
  align-items: center;
  border: none;
  border-radius: 5px;
  background: #4f4b6a;
  cursor: pointer;
  color: #f3e8ee;
  font-size: 16px;
  opacity: 0.8;
  display: none;
}
