body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Source Sans Pro, Helvetica Neue, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

.cover {
  display: flex;
  align-items: center;
  background: linear-gradient(to left bottom, hsl(227, 98%, 21%) 0%, hsl(147, 97%, 15%) 100%);
  height: 100vh;
  width: 100vw;
}

.cover p {
  margin: 25px;
}

.cover .logo {
  width: 80px;
  height: 80px;
  border-radius: 50px;
}

section.cover .cover-main {
  flex: 1;
  margin: -20px 16px 0;
  text-align: center;
  position: relative;
}

p.myself {
  line-height: 25px;
  color: white;
}

.things a {
  display: inline-block;
  width: 150px;
  text-align: left;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgb(22, 31, 85);
  /* box-shadow: 0 0 5px rgba(0, 46, 250, 0.534); */
  padding: 15px;
  margin: 10px;
  color: white;
}

.things a:hover {
  transform: scale(1.1);
}

.things a .title {
  display: block;
  margin-bottom: 8px;
}

.things a .desc {
  font-size: x-small;
  opacity: 0.5;
}

.links a {
  display: inline-block;
}

.links a svg {
  width: 24px;
  height: 24px;
  margin: 0 10px;
  color: white;
}

.cloud {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
  box-sizing: border-box;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.cloud .waves {
  display: flex;
  position: relative;
  width: 100%;
  height: 80px;
}

svg:not(:root) {
  overflow: hidden;
}

.cloud .parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.cloud .parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

@keyframes move-forever {
	0% {
		transform: translate(-90px,0);
	}

	100% {
		transform: translate(85px,0);
	}
}

.footer {
  padding: 20px;
  text-align: center;
  background: #202020;
  font-size: x-small;
}

.footer a {
  color: white;
  text-decoration: none;
  opacity: 0.6;
}