body, html {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.banner-container {
  height: 33%;
  background-color: lightblue;
  display: flex;
  align-items: center;
  justify-content: center;
}
#canvas-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#canvas-container {
  width: 100%; /* Adjust width as needed */
  height: 85vh; /* Adjust height as needed */
}

#banner-image {
  position: absolute;
  z-index: 1;
  height: 93px;
  bottom: 41px;
}




/* social media  */
#socials-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul {
  position: relative;
  display: flex;
  transform-style: preserve-3d;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  
}
ul li {
 position: relative;
 list-style: none;
 width: 60px;
 height: 60px;
 margin: 0px 20px;
}
ul li:before{
 content: '';
 position: absolute;
 bottom: -10px;
 left: -5px;
 width: 100%;
 height: 10px;
 background: #2a2a2a;
 trnasform-origin: top;
 transform: skewX(-41deg);
}
ul li:after{
 content: '';
 position: absolute;
 top:5px;
 left: -9px;
 width: 9px;
 height: 100%;
 background: #2a2a2a;
 trnasform-origin: right;
 transform: skewY(-49deg);
}
ul li span{
 position: absolute;
 top: 0;
 lef: 0;
 width: 100%;
 height: 100%;
 display: flex !important;
 background: #2a2a2a;
 justify-content: center;
 align-items: center;
 color: #fff;
 font-size: 30px !important;
 transition: 1.5s ease-out;
}
ul li:hover span {
 z-index: 1000;
 transition: .3s;
 color: #fff;
 box-shadw: -1px 1px 1px rgba(0, 0, 0, .5);
}
ul li:hover span:nth-child(5){
 transform: translate(40px, -40px);
 opacity: 1;
}
ul li:hover span:nth-child(4){
 transform: translate(30px, -30px);
 opacity: .8;
}
ul li:hover span:nth-child(3){
 transform: translate(20px, -20px);
 opacity: .6;
}
ul li:hover span:nth-child(2){
 transform: translate(10px, -10px);
 opacity: .4;
}ul li:hover span:nth-child(1){
 transform: translate(0px, 0px);
 opacity: .2;
}
ul li:nth-child(1):hover span{
 background: #1877F2 !important;
}
ul li:nth-child(2):hover span{
 background: #25D366 !important;
}
ul li:nth-child(3):hover span{
 background: #F56040 !important;
}
ul li:nth-child(4):hover span{
 background: #FCEB00 !important;
}

/* Buttib */
/* CSS */
.button-33 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: green;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  bottom: 142px;
  position: absolute;
  z-index: 2;
}


.button-33:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}



@media only screen and (max-width: 600px) {
  ul li {
    position: relative;
    list-style: none;
    width: 47px;
    height: 47px;
    margin: 0px 20px;
  }
  #banner-image {
    position: absolute;
    z-index: 1;
    height: 70px;
    bottom: 100px;
  }
  .button-33{
    bottom: 200px;
  }
  ul{
    position: absolute;
    bottom: 40px;
  }
  
}