* {ু
    Margin: 0;
    Padding: 0;
    box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Poppins, Arial, sans-serif;
  background-color: #f4f4f4;
  color: #202020;
  display: flex;
  flex-direction: column;
}



.container {
  flex: 1;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

html, body {
  min-height: 100svh;
  min-height: 100vh;
}

body::after { content: ''; display: block; height: 10vh; }




.header {
  position: fixed;
  background-color: #202020;
  height: 10vh;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.about-me {
  color: white;
  font-size: 4.5vh;
  font-weight: 600;
}

.paragraph {
  max-width: 80vw;
  margin-top: 12vh;
  margin-bottom: 10vh;
  font-size: 2vh;
  line-height: 2;
  text-align: left;
  padding: 0 2vw;
  color: #333;
}

.paragraph p {
  margin-bottom: 3vh;
  line-height: 2; 
  font-size: 2vh;
  color: #333;
  text-align: center;
}


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #202020;
  z-index: 9999;
  padding: 1.5vh 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-info a {
  width: 7vh;
  height: 7vh;
  border-radius: 10px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #202020;
  text-decoration: none;
}

.contact-info a svg {
  width: 4vh;
  height: 4vh;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info a:hover {
  background-color: #cecece;
  color: #000000;
}

@keyframes slideLeftRight {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* Right Side Icon */
.gt-icon-right {
  position: fixed;
  right: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-right a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Left Side Icon */
.gt-icon-left {
  position: fixed;
  left: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-left a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}


