* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
}

#tsparticles canvas {
  width: 100% !important;
  height: 100% !important;
}

.centerdock {
  position: relative;
  z-index: 1;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 100vh;
  transform: translateY(-8%);
  align-items: center;
  text-align: center;
  margin: 0 auto;
  width: 80%;
  pointer-events: none;
}

h1 {
  margin: 0;
  padding: 0;
  width: 100%;
}

.logo-wrap {
  position: relative;
  margin: 0 auto;
  width: 85%;
  pointer-events: none;
}

.logo-wrap img {
  display: block;
  width: 100%;
  pointer-events: none;
}

.logo-glow {
  position: absolute;
  inset: 0;
  filter: blur(10px);
  opacity: 0.3;
  z-index: 0;
}

#logo {
  position: relative;
  z-index: 1;
}

nav {
  width: 100%;
  margin-top: 2em;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
}

a {
  pointer-events: auto;
  display: inline-block;
}

.icon,
.iconorange {
  transition: transform 0.7s ease-in-out;
  padding: 6px;
  width: 3.5em;
  cursor: pointer;
}

.icon {
  filter: drop-shadow(0 0 0.3em rgba(0, 0, 0, 0.2));
}

.iconorange {
  filter: url(#outer-glow-orange);
}

.icon:hover,
.iconorange:hover {
  transform: rotate(360deg) scale(0.9);
}
