/* Ensure the body and html take up the full height of the viewport */
html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* Prevent scrolling */
  font-family: Arial, sans-serif;
}

/* Apply the background image */
body {
  background: url("image/back1.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* Create a white semi-transparent overlay */
.overlay {
  position: fixed; /* Change to fixed to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* White with 70% opacity */
  z-index: 1;
}

/* Style the content container */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: black;
  padding: 20px;
  margin: 125px auto;
  /* background: rgba(255, 255, 255, 0.75);  */
  /* border-radius: 10px; */
  width: 80%;
  max-width: 600px;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #0088cc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.telegram-btn:hover {
  background-color: #006699;
}

.telegram-btn i {
  top: 200px;
  position: fixed; /* Fixed position to stay in the top-left corner */
}
.logo {
  position: fixed; /* Fixed position to stay in the top-left corner */
  top: 5px;
  left: 10px;
  z-index: 3; /* Ensure it is above the overlay */
  color: black;
  font-size: 1.2em;
  font-weight: bold;
  padding: 5px;
  /* border-radius: 5px; */
}
.content p {
  font-size: 1.5em;
  font-weight: 600;
  color: green;
  font-style: unset;
}

h2 {
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 2.5em;
  color: #00215e;
  margin-top: 0.5em;
}

.me {
  display: block;
  margin: 3em auto;
  margin-bottom: 3em;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.social {
  text-align: center;
  font-size: 2.5em;
  color: #555;
  overflow: hidden;
}

.social a {
  color: inherit;
  text-decoration: none;
}

.social i {
  margin: 0.3em;
  cursor: pointer;
  transition: color 300ms ease, margin-top 300ms ease;
  transform: translateZ(0);
}

.social i:hover {
  margin-top: -1px;
}

.social #twitter:hover {
  color: #1197fd;
  background: #fff;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  width: 30px;
}

.social #github:hover {
  color: black;
  height: 38.5px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  width: 39px;
  background: #fff;
}

.social #linkedin:hover {
  background: #fff;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  color: #0177b5;
}

.social #code:hover {
  color: #ffffff;
}

.social #stack:hover {
  background: linear-gradient(
    to bottom right,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social #phone:hover {
  color: green;
}

footer {
  text-align: center;
  padding: 1em 0;
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
}

footer p {
  margin: 0;
  color: #000;
}
