*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

body {
  background-color: #efe7da;
  font-family: 'Inter', sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('background.png') center/cover no-repeat;
  opacity: 0.05; 
  z-index: -1; 
}

.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 90vw;
  max-width: 400px;
  padding: 20px;
}

.logo-container {
  margin-bottom: 24px;
}

.share-button{
  display: flex;
  align-self: flex-end;
  color: #fff;
}

.share-icon{
  font-size: 32px;
  background-color: #2f3803;
  padding: 12px;
  border-radius: 50%;
 
}

.img-container{
  height: 96px;
  width: 96px;
  margin-bottom: 12px;
}

h1{
  font-size: 20px;
  margin-bottom: 32px;
}

img{
  width: 100%;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;   
  position: relative;
  padding: 12px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(45deg, #2f3803, #627502);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  text-decoration: none;
}

.link-card .icon-wrapper {
  position: absolute;     
  left: 20px;
  display: flex;
  align-items: center;
}

.link-card .icon-wrapper ion-icon,
.link-card .icon-wrapper img {
  height: 24px;
  width: auto;            
}

.link-card p {
  margin: 0;
  text-align: center;      
  width: 100%;             
}


.icons{
  font-size: 24px;
}

h1 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #000; 
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;              
  text-decoration: none;  
  color: #000;          
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px; 
}

.instagram-link .instagram-icon {
  font-size: 24px;
  color: #710014;
}