:root {
  --accent-color: #efb248;
  --accent2-color: #9838f8;
  --bg-white: #101010;
  --bg-color: #120818;
  --bg2-color: #120818;
  --white-color: #fff;
  --t-white-color: rgba(255, 255, 255, 0.9);
  --textcolor: #fff;
  --hometext: #efb248;
  --boxshadow: rgba(239, 178, 72, 0.25);
  --borderradius: 10px;
  --root-bg: linear-gradient(135deg, #291f0d, #efb248);
}
body {
  overflow-x: hidden !important;
  background: var(--root-bg);
  color: var(--bg-white);
  font-family: "PoppinsExtraLight", "FontAwesome", sans-serif !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 1s ease-in-out;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "PoppinsExtraLight";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container {
  text-align: center;
  width: 90%;
  max-width: 500px;
}
.profile {
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: var(--borderradius);
}
.profile img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--borderradius);
  border: 3px solid var(--abouttextcolor);
  transition: transform 0.3s;
}
.profile img:hover {
  transform: scale(1.1);
}
.profile h1 {
  margin: 10px 0 5px;
  color: var(--white-color);
}
.profile p {
  font-size: 14px;
  color: var(--white-color);
}
.links a strong {
  color: var(--white-color);
  transition: 0.3s;
}
.linksborder i {
  font-size: 35px;
  color: var(--accent-color);
}
.iborder {
  display: flex;
  min-width: 49px;
  min-height: 49px;
  background-color: var(--bg-white);
  padding: 4.5px;
  box-sizing: border-box;
  border-radius: var(--borderradius);
  justify-content: center;
  align-items: center;
}
.links {
  margin-top: 20px;
}
.link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--bg-white);
  padding: 12px;
  margin: 10px 0;
  border-radius: var(--borderradius);
  text-decoration: none;
  color: var(--accent-color);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.linksborder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.link:hover {
  background-color: var(--accent-color);
  color: var(--bg-white);
}
.link:hover strong {
  color: var(--bg-white);
}

@media screen and (max-width: 768px) {
  .container {
    text-align: center;
    width: calc(100% - 20px);
    padding: 0 10px;
    max-width: 100%;
  }
}
