html,
body {
  min-height: 100vh;  /* Minimum height of viewport */
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  font-family: "Open Sans", "Helvetica Neue", Arial;
  background: linear-gradient(
    rgb(0, 0, 0) 0%,
    rgb(0, 0, 0) 30%,
    rgb(32, 116, 98) 100%
  );
}

p {
  font-size: 14px;
}

.container {
  z-index: 2;
  position: relative;
  width: 100%;
  height: fit-content;
}

.calc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo {
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

@media screen and (min-width:600px) {
  .logo img {
    height: 500px;
  }

  .info p {
    font-size: 24px;
    text-align: justify;
  }
}
  
@media screen and (max-width:600px) {
  .logo img {
    height: 300px;
  }

  .info p {
    font-size: 18px;
    text-align: justify;
  }
}

h1 {
  font-size: 2rem;
  color: white;
  text-align: center;
}

.desc {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  width: 80%;
  margin: auto;
}

.info {
  margin: 2rem;
  padding: 0.75rem;
  color: white;
  display: flex;
  flex-direction: column;
}

h2 {
  font-size: 2rem;
  color: white;
  text-align: center;
}

.info h2 {
  border-bottom: solid 2px white;
  color: rgb(22, 247, 255);
}

canvas {
  display: block;
  vertical-align: bottom;
} /* ---- particles.js container ---- */

#particles-js {
  position: fixed;    /* Covers the entire viewport */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;         /* Behind the content */
  pointer-events: none; /* Prevent interactions with the particles */
}

.btn{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.quickstart {
  box-shadow: rgb(53, 247, 172) 2px 2px 10px;
  border-radius: 15px;
  color: white;
  background-color: black;
  padding: 10px;
  bottom: 0;
  right: 0;
  margin: 2%;
  font-size: 30px;
  border: none;
  /* animation: 1s linear 0s infinite alternate glow; */
  transition: 0.5s;
}

.quickstart:focus{
  outline: none;
}

.quickstart:hover 
{
  cursor: pointer;
  transition: 1s;
  color: rgb(212, 185, 32);
  font-size: 30px;
}

@keyframes glow {
  from { box-shadow: rgb(53, 247, 172) 7px 7px 5px, rgb(162, 35, 173) -7px -7px 5px; } to { box-shadow: rgb(0, 0, 0) 7px 7px 5px; }
}
