html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body {
  background-color: black;
}

.contact-area {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  pointer-events: none;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background-color: #2f6df6;
  border-radius: 6px;
  pointer-events: auto;
  animation: contactPulse 1.8s ease-in-out infinite;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #1f5be0;
  box-shadow: 0 10px 24px rgba(47, 109, 246, 0.4);
  transform: translateY(-2px);
}

.contact-btn:active {
  transform: translateY(0);
}

.contact-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
  transform: translateY(2px);
}

@keyframes contactPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 109, 246, 0.45);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(47, 109, 246, 0);
  }
}

.main {
  position: relative;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.img {
  display: block;
  width: 100%;
}
.btn1 {
  position: absolute;
  width: 87%;
  height: 4.8%;
  top: 72.8%;
  left: 6.2%;
}

.btn2 {
  position: absolute;
  width: 87%;
  height: 4.9%;
  top: 78.5%;
  left: 6.2%;
}

.btn3 {
  position: absolute;
  width: 67.2%;
  height: 11.5%;
  top: 86.8%;
  left: 14.8%;
}
