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,
button,
input {
margin: 0;
padding: 0;
border: 0;
outline: none;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
text-decoration: none;
}
.scroll-to-top-btn {
position: fixed;
right: 0;
bottom: 0;
width: 3rem;
height: 3rem;
margin: 20px;
border: 2.5px solid white;
border-radius: 100%;
background-color: rgba(0,0,0,0.4);
color: white;
z-index: 9999;
transition: 1s ease;
transform: scale(1);
}
.scroll-to-top-btn:hover {
cursor: pointer;
transition: 0.3s ease-in-out;
transform: scale(1.1);
}
.scroll-to-top-arrow {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
font-size: 1.5rem;
}
.hideBtn {
display: none;
}