body, html {
  background-color: #222222;
  color: #fff;
  margin: auto;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#i {
  position: absolute;
  top: 4%;
  border-radius: 50%;
  transform: translateX(-50%);
  height: 90px;
  width: 90px;
}
.main-name {
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 18px;
  margin: 10px 0;
  font-weight: bolder;
}
.main-name2 {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 18px;
  margin: 10px 0;
  font-weight: bolder;
}
@keyframes typingMainName {
  0% { width: 0; }
  100% { width: 100%; }
}
.main-name, .main-name2 {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  animation: typingMainName 3s steps(900) infinite;
}
.social-links {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.social-button {
  padding: 15px 20px;
  height: 29px;
  background-color: black;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: 120%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  align-content: center;
  border-radius: 20px;
  transition: background-color 0.4s ease;
}
.social-button:hover {
  background-color: grey;
}
.ft {
  position: fixed;
  bottom: 0%;
  background-color: #111;
  margin: auto;
  width: 100%;
  height: 7%;
}
#time {
  position: fixed;
  bottom: -15.5%;
  left: 2%;
  z-index: +999;
  color: #fff;
  margin: auto;
  font-size: 10px;
  font-weight: bold;
  height: 20%;
}
#git {
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: +999;
  height: 25px;
  width: 25px;
}
/*
 * Responsive: Smaller Screens
 */
@media only screen and (min-width: 0px) and (max-width: 320px),
only screen and (min-height: 0px) and (max-height: 480px) { 
#i {
  height: 65px;
  width: 65px;
  top: 3%;
}  
.main-name {
  font-size: 13px;
  top: 18%;
} 
.main-name2 {
  font-size: 13px;
  top: 21%;
} 
.social-links {
  top: 30%;
  gap: 13px;
} 
.social-button {
  height: 18px;
  width: 90%;
  font-size: 12px;
}
.ft {
  height: 8%;
}  
#time {
  bottom: -15%;
  font-size: 10px;
}
#git {
  bottom: 1%;
  right: 3%;
  height: 25px;
  width: 25px;
}
}
/*
 * Responsive: Smaller Screens Landscape
 */
@media (orientation: landscape) and (min-height: 0px) and (max-height: 480px) {
#i {
  height: 85px !important;
  width: 85px !important;
  top: 3% !important;
  left: 8% !important;
}  
.main-name {
  font-size: 15px !important;
  top: 5% !important;
  left: 25% !important;
} 
.main-name2 {
  font-size: 15px !important;
  top: 15% !important;
  left: 25% !important;
} 
.social-links {
  top: 3% !important;
  right: 0% !important;
  transform: translateX(0%);
} 
.social-button {
  height: 25px !important;
  width: 70% !important;
  font-size: 10px;
}
.ft { 
  left: 0%;
  width: 40% !important;
  height: 15% !important;
}  
#time {
  font-size: 10px !important;
  bottom: -11% !important;
}
#git {
  bottom: 3% !important;
  left: 35% !important;
  height: 25px !important;
  width: 25px !important;
}
}
/*
 * Responsive: Larger Screens
 */
@media only screen and (min-width: 481px) {
#i {
  height: 110px;
  width: 110px;
  top: 2.5%;
}
.main-name {
  font-size: 20px;
  top: 19%;
} 
.main-name2 {
  font-size: 20px;
  top: 22%;
} 
.social-links {
  top: 31%;
} 
.social-button {
  height: 50px;
  width: 140%;
  font-size: 20px;
}
.ft {
  opacity: 0;
}  
#time {
  opacity: 0;
}
#git {
  opacity: 0;
}
}
