* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background:url('16x9\ landsacpe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: linear-gradient(180deg, #b53608, #d66a17);
  border-radius: 20px;
  padding: 2rem;
  width: 400px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  position: relative;
  margin-top: 100px;
  margin-bottom: 10px;
}

.top-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: sans-serif;
  color: #f7f4f4;
}

.profile-img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  margin: 6px 5px;
}

h2 {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 25px;
  font-weight: bold;
}

.icon-between img {
   width: 140px;
   margin-top: 23px;
   margin-bottom: 15px;
}

.subtitle {
  color: #ffffff;
  font-size:17px;
  margin-bottom: 1.5rem;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.software-icons img{
  width: 40px;
  margin: 0.5rem auto;
  display: flexbox;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-item {
  border: 1.5px solid #f7f4f4;
  border-radius: 50px;
  background: rgb(0, 0, 0);
  padding: 10px 0;
  color: #efe8e8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.link-item:hover {
  background: #ffffff;
  color: rgb(3, 3, 3);
}

.link-item .icon {
  width: 18px;
  height: 18px;
  background: #efebeb;
}

.join-btn {
  background: rgb(255, 255, 255);
  color: #000000;
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.join-btn:hover {
  background: #000000;
  color: rgb(255, 254, 254);
}
