@charset "utf-8";
/* CSS Document */

html, body {
  margin: 0;
  height: 100%;

  font-family: "Nunito", serif;
  color: white;
}

canvas {
  display: block;
  vertical-align: bottom;
}

.background {
  background: rgb(36,34,71);
  background: radial-gradient(circle, rgb(35 54 75) 0%, rgba(6, 20, 35, 1) 60%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sphere {
  position: relative;
  width: 90%;
  height: auto;
  aspect-ratio: 1/1;
  max-width: 600px;
  max-height: 600px;
  background-image: url('/img/sphere.webp');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.content {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: #ddbfb7;
  text-align: center;
  font-size: 1.5rem;
}