
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700&display=swap');

:root {
  --border: 1.5em;
}

* {
  box-sizing: border-box;
}

/* reset styles */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h5,
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;
}

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;
}

/* Main styles */

html {
  font-family: 'Karla', sans-serif;
}

main {
  height: 100vh;
  width: 100%;
  background-color: #0b0f0c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fingerprintImg {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
  user-select: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 50rem;
  background-color: rgba(11, 11, 15, 0.2);
  position: relative;
  padding-top: 7rem;
  position: relative;
}

.logoImg {
  width: 12.5rem;
  user-select: none;
}

h5 {
  color: white;
  font-weight: bold;
  font-size: 2.5em;
  padding: 3rem 0 1rem 0;
}


.list {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.list:first-of-type {
  margin-top: 5rem;
}

.listItem {
  padding: 0 1rem;
}

.listItem a i {
  font-size: 31px;color: white;
  transition: fill 0.3s;
}
.listItem a i:hover {
  color: #FED317;
}
.copyright {
  margin-top: 11.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.login-button{
    cursor:pointer;
    padding:8px 16px;
    margin-top:50px;
    font-size:18px;
    border-radius:5px;
    border:none;
    background-color: ivory;
    text-decoration:none;
    color:#222;
}
.login-button:hover{
    background-color:gold;
}
/* Media queries */

@media (max-width: 450px) {
  .logoImg {
    width: 10rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h5 {
    font-size: 0.88rem;
  }

  .listItem {
    padding: 0 0.8rem;
  }
}

@media (max-width: 292px) {
  h1 {
    font-size: 2.2rem;
  }

  h5 {
    font-size: 0.7744rem;
  }

  .list {
    flex-wrap: wrap;
  }
}

@media (max-height: 768px) {
  .container {
    padding-top: 1rem;
  }

  .copyright {
    margin-top: 5rem;
  }
}

@media (max-height: 500px) {
  .copyright {
    margin-top: 3rem;
  }

  .list {
    margin-top: 3rem;
  }
}
