* {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html,
body {
  --black: hsl(240, 6%, 13%);
  --grey: hsl(240, 9%, 89%);
  height: 100%;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

@media (min-width: 64em) {
  body {
    background-color: black;
    background-image: url(../images/background-desktop.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

main {
  background: url(../images/background.svg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 64em) {
  main {
    width: 358px;
    height: 540px;
    background-position-y: -99px;
    position: absolute;
    top: 137px;
  }
}

.container {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  color: var(--grey);
}

@media (min-width: 64em) {
  .container::before {
    content: "";
    background-image: url(../images/quebra.png);
    position: absolute;
    top: -55px;
    right: 85px;
    z-index: 1;
    height: 8px;
    width: 80px;
  }
  .container::after {
    content: "";
    background-image: url(../images/faixa.png);
    position: absolute;
    top: -209px;
    right: 93px;
    z-index: 1;
    height: 158px;
    width: 64px;
  }
}

.avatar {
  width: 10rem;
  margin: 11.5rem auto 0;
  position: relative;
}

@media (min-width: 64em) {
  .avatar {
    margin-top: 72px;
  }
}

.avatar span {
  position: absolute;
  top: -15px;
  z-index: 1;
}

.avatar > img {
  width: 10rem;
  height: 11.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

h1 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

a {
  color: var(--grey);
  text-decoration: none;
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

p {
  margin-top: 2rem;
}

ul {
  margin-top: 4rem;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 11.5rem;
}
/*# sourceMappingURL=main.css.map */