@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  color: #FFFFFF;
  font-family: "Noto Sans", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background: url("../img/background-blur.jpg") 50% 50%;
}
.container .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 1;
  opacity: 0.8;
}

@media only screen and (max-width: 614px) {
  .profile {
    text-align: center;
    width: 100%;
    bottom: 34vh !important;
  }
  .profile .image-container {
    margin-left: 0px !important;
    max-width: 42vw !important;
    top: -42vw !important;
  }
  .profile .text {
    display: none;
  }
  .profile .text-sm {
    display: inline !important;
    margin-top: -7vw;
    width: 90vw;
  }
  .social-links a svg {
    width: 30px !important;
  }
  .social-links .separator {
    height: 30px !important;
  }
}
@media only screen and (max-width: 470px) {
  .social-links {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 360px) {
  .social-links a {
    margin: 0 10px !important;
  }
}
.profile {
  position: absolute;
  bottom: 35vh;
}
.profile .image-container {
  width: 320px;
  margin-left: -50px;
  transition-duration: 0.5s;
  position: relative;
  top: -320px;
  display: inline-block;
  z-index: 10;
}
.profile .text {
  top: 25px;
}
.profile .text, .profile .text-sm {
  width: 320px;
  position: relative;
  z-index: 20;
}
.profile .text-sm {
  display: none;
}

.social-links {
  border-top: 1px solid #1afff0;
  margin: 0;
  padding: 13vh 20px 0 20px;
  width: calc(100% - 40px);
  height: 27vh;
  position: absolute;
  bottom: 0;
  z-index: 5;
  background: rgba(0, 26, 24, 0.6666666667);
  text-align: center;
}
.social-links a {
  cursor: pointer;
  margin: 0 15px;
  text-decoration: none;
}
.social-links a svg {
  width: 45px;
}
.social-links a svg .text {
  fill: #FFFFFF;
}
.social-links a svg .text.no-bg {
  fill: #ccc;
}
.social-links a svg .background {
  fill: #ccc;
}
.social-links a svg.linkedin:hover .background {
  fill: #0a66c2;
}
.social-links a svg.linkedin:hover .text {
  fill: #ffffff;
}
.social-links a svg.stackoverflow:hover .background {
  fill: #bcbbbb;
}
.social-links a svg.stackoverflow:hover .text {
  fill: #f48024;
}
.social-links a svg.github:hover .text, .social-links a svg.x:hover .text {
  fill: #fff;
}
.social-links .separator {
  width: 1px;
  height: 45px;
  background: #ccc;
  display: inline-block;
  display: none;
}

.image-container {
  perspective: 1000px; /* Add perspective to the flip effect */
}
.image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden; /* Hide back image when flipped */
  transition: transform 0.6s; /* Smooth flip transition */
}
.image-container .front {
  z-index: 2; /* Front image stays on top */
  transform: rotateY(0deg); /* Start facing forward */
}
.image-container .back {
  transform: rotateY(180deg); /* Start flipped */
}
.image-container:hover .front {
  transform: rotateY(180deg); /* Flip front image on hover */
}
.image-container:hover .back {
  transform: rotateY(0deg); /* Bring back image into view on hover */
}

#chat.fab {
  cursor: pointer; /* Pointer cursor on hover */
  position: fixed;
  bottom: 20px; /* Distance from bottom */
  right: 20px; /* Distance from right */
  width: 64px; /* Standard size for FAB */
  height: 64px;
  border: none; /* Removes border */
  border-radius: 50%; /* Makes it circular */
  background-color: #1afff0;
  color: #001a18;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Adds shadow */
}
#chat.fab:hover {
  opacity: 0.8; /* Slightly lower opacity on hover */
}
#chat.fab span {
  font-size: 32px; /* Icon size */
}
#chat svg {
  width: 45px;
}

#coinmarketcap-widget-marquee {
  overflow: hidden;
  position: absolute;
  left: -150px;
  top: 0;
  width: calc(100% + 150px);
}

.coin-marquee-wrapper--dark {
  background: rgba(0, 26, 24, 0.6666666667) !important;
  border-top: 1px solid #001a18 !important;
  border-bottom: 1px solid #1afff0 !important;
}

.coin-marquee-wrapper--dark .coin-marquee-item::after {
  background-color: #1afff0 !important;
}

.coin-marquee-wrapper--dark .coin-marquee-item-symbol {
  color: #1afff0 !important;
}

/*# sourceMappingURL=main.css.map */
