* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
}

.background {
  background: url("background_darkened.jpg") no-repeat center center/cover;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.content {
  text-align: center;
  color: white;
  position: relative;
  top: 20%;
}

.profile {
  position: relative;
  display: inline-block;
}

.profile-pic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
}

.verified {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #0095f6;
  color: white;
  border-radius: 50%;
  padding: 4px 6px;
  font-size: 14px;
  border: 2px solid white;
}

h1 {
  margin-top: 10px;
  font-size: 28px;
}

.status {
  font-size: 16px;
  margin: 5px 0;
}

.username {
  font-size: 18px;
  margin-bottom: 20px;
}

.telegram-btn {
  display: inline-block;
  background: white;
  color: black;
  padding: 15px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.telegram-btn img {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}