@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
}

.container {
  max-width: 800px;
  margin: auto;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

header {
  width: 100%;
  height: 300px;
  background: linear-gradient(120deg, #3b496a, #3d628b, #3e6a96);
  /* position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
}

header .profile {
  width: 220px;
  height: 220px;
  /* border-radius: 100%; */
  overflow: hidden;
  /* position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #fff; */
}

.media-link {
  padding: 40px 0px;
}

.media-link ul {
  width: 100%;
  list-style-type: none;
  /* background-color: orange; */
}

.media-link ul li {
  margin-bottom: 18px;
  position: relative;
}

.media-link ul li .icon {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 5px;
  left: 10px;
}

.media-link ul li a {
  background-color: #fff;
  border-radius: 6px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  padding: 10px 0;
  color: #424872;
}
.group-btn {
  display: flex;
  justify-content: center;
}

.btn-telegram {
  text-decoration: none;
  background-color: #3d648d;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  width: 50%;
  display: block;
  text-align: center;
}

@media (max-width: 820px) {
  .container {
    padding-inline: 20px;
  }
}

@media (max-width: 768px) {
}
