/*********************************************
*** GENERAL STYLES
**********************************************/

html,
body{
    height: 100%;
}

body{
  margin: 0;
  color: #8dc57c;
  text-align: center;
  background-color: #04260a;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1, h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
}

h1 {
  font-weight: 700;
}
h2 {
  font-weight: 600;
}

/* Styles for vertical and horizontal positioning */
.site-wrapper {
    display: table;
    width: 100%;
    height: 100%; 
    min-height: 100%;
}
.site-wrapper-inner {
    display: table-cell;
    vertical-align: top;
}
.main-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 1rem;
  @media screen and (min-width: 900px) {
    gap: 2rem;
  }

  .container-inner-content{
    z-index: 1;
  }
  img{
    max-height: 100%;
    max-width: 16rem;
    border-radius: 100%;
    z-index: 1;
    box-shadow: 0px 0px 10px 2px #ccffce21;
  }
    h2 {
    color: #f7f0f0;
    margin-block-end: 0.5em;
  }
  p {
    color: #f7f0f0;
    letter-spacing: 0.6px;
    font-size: 15px;
    margin-block-start: 0;
  }
}

/*********************************************
*** CONTAINER 
**********************************************/

/* Spacing */
.container-inner {
    padding: 30px;
}

/* Particles js */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}
canvas {
  display: block;
  vertical-align: bottom;
}
.fa-ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left:0 !important;
}
i.fa { 
  padding: 10px;
  margin: 10px;
  display: inline-block;
  color: #8dc57c;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -moz-box-shadow: 0 0 2px #888;
  -webkit-box-shadow: 0 0 2px #888;
  box-shadow: 0 0 2px #888;
}
i.fa:hover{
  background-color: #f7f0f04a;
}

/*********************************************
*** FOOTER 
**********************************************/

.footer{
    position: relative;
}

/*********************************************
*** MOBILE FIRST - MEDIA QUERIES FOR RESPONSIVENESS ON DIFFERENT DEVICES    
**********************************************/

@media (min-width: 768px) {
    /* Positioning of footer */
    .footer {
      position: fixed;
      bottom: 0;
    }
    /* Vertical centering */
    .site-wrapper-inner {
      vertical-align: middle;
    }
    /* Work with the width */
    .footer,
    .main-container {
      width: 100%; /* Must be percentage or pixels for horizontal alignment */
    }
  }
  
  @media (min-width: 992px) {
    .footer,
    .main-container {
      width: 700px;
    }
  }