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

:root {
  --icon-size: 35px; /* Easily change this value */
  --logo-size: 200px; /* You can adjust this anytime */
}

body {
  font-family: 'Arial', sans-serif;
  background: url("images/4.png") no-repeat center center fixed;
  background-size: 100%;
  background-color: #ffdfea;
  color: #222;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.25);
  z-index: -1;
}

.container {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.banner {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.logo {
   width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  border: 3px solid #ffffff;
  overflow: hidden;
  margin-top: calc(var(--logo-size) / -2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 0 auto; /* centers horizontally */
  background-color: #a52a2a; /* prevents transparency border glitch */
  margin-bottom: 2.5rem;
}


.logo img {
  width: auto;
  height: 110%;
  object-fit: cover;
  display: block;
}

h1 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  color: #a52a2a;
  font-family: 'Brush Script MT', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.handle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.description {
  font-weight: bold;
  color: #a52a2a;
  margin-bottom: 1.5rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  padding: 0.5rem 1.0rem;
  border-radius: 10px;
  font-weight: bold;
  transition: background 1.3s ease;
  color: #a52a2a;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  gap: 0px;
  border: 1px solid rgba(255, 255, 255, 1.5); /* light border */
}

.btn.whatsapp { 
  border-color: #ffffff;
}
.btn.instagram { 
  border-color: #ffffff;
}
.btn.facebook { 
  border-color: #ffffff;
}
.btn.facebook { 
  border-color: #ffffff;
}
.btn.tiktok { 
  border-color: #ffffff;
}
.btn.youtube { 
  border-color: #ffffff;
}
.btn.pinterest { 
  border-color: #ffffff;
}
.btn span {
  flex: 1;
  text-align: center;
}

.btn i {
  margin-right: 8px;
}

.btn.whatsapp { background: #ffdfea; }
.btn.instagram { background: #ffdfea; }
.btn.facebook { background: #ffdfea; }
.btn.tiktok { background: #ffdfea; }
.btn.youtube { background: #ffdfea; }
.btn.pinterest { background: #ffdfea; }

.btn:hover {
  filter: brightness(1.1);
}


.icon {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .logo {
    width: 200px;
    height: 200px;
	margin-top: -50px;
  }

  h1 {
    font-size: 1.7rem;
  }

  .btn {
    font-size: 1.4rem;
  }
}
