/*
 * @Author: BOLBY WANG 
 * @Date: 2021-03-17 20:46:55 
 * @Last Modified by:   BOLBY WANG 
 * @Last Modified time: 2021-03-17 20:46:55 
 */

:root {
  --border: 1.5em;
}

* {
  box-sizing: border-box;
}

/* Main styles */
html {
  font-family: 'Agbalumo', sans-serif;
}

a{
  color: #89DFBC;
  text-decoration:overline;
}

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

.fingerprintImg {
  position: absolute;
  opacity: 0.8;
  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, .2);
  backdrop-filter: blur(15px);
  border-radius: 5%;
  position: relative;
  padding-top: 7rem;
  position: relative;
}

.logoImg {
  width: 9.5rem;
  user-select: none;
  border-radius: 30%;
}

h1 {
  font-family: 'Agbalumo', sans-serif;
  color: white;
  font-weight: 700;
  font-size: 3.125rem;
  /* text-transform: uppercase; */
  padding: 0rem 0 3rem 0;
}

h3 {
  color: rgba(255, 255, 255);
  font-weight: 500;
  /* text-transform: uppercase; */
  font-size: 1.1em;
}

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

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

.listItem {
  padding: 0 1rem;
}

.listItem a svg {
  fill: white;
  transition: fill 0.3s;
}

.listItem a:hover svg {
  fill: #89DFBC;
}

.listItem[data-item="figma"] a svg path,
.listItem[data-item="ui8"] a svg path,
.listItem[data-item="YouTube"] a svg rect:first-child {
  transition: fill 0.3s;
}

.listItem[data-item="figma"] a:hover svg path {
  fill: #89DFBC;
}

.listItem[data-item="ui8"] a:hover svg path {
  fill: #89DFBC;
}

.listItem[data-item="ui8"] a:hover svg path:last-child {
  fill: white;
}

.listItem[data-item="YouTube"] a:hover svg rect:first-child {
  fill: #89DFBC;
}

.copyright {
  /* margin-top: 11.875rem; */
  margin: 8% auto;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-weight: 400;
  /* text-transform: uppercase; */
}

/* Media queries */

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

  h1 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 0.88rem;
    margin: auto 8%;
    text-align: center;
    line-height: 1.5;
  }

  .listItem {
    padding: 0 0.8rem;
  }
  .container {
    width: 85%;
  }
}

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

  h3 {
    font-size: 0.7744rem;
    margin: auto 8%;
    text-align: center;
    line-height: 1.5;
  }

  .list {
    flex-wrap: wrap;
  }
  .container {
    width: 85%;
  }
}

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

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

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

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