* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-color: black;
  --bg: rgb(230, 230, 230);
  --stroke-color: rgba(0, 0, 0, 0.5);
  --surface-color: rgba(0, 0, 0, 0.05);
  --surface-color-hover: rgba(0, 0, 0, 0.02);
  --highlight-color: rgba(0, 0, 0, 0.1);
}

.background-bottom {
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  text-shadow: 2px 2px 8px black;
}

.button-container {
  border-bottom: gray solid 5px;
  display: flex;
  align-items: center;
  height: 50px;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  /*background-image: url("./assets/background-top.png");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header{
  position: relative;
  color: white;
  height: 0px;
}

body * {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  margin: 6px auto 0px;
  padding: 0 24px;
  background-color: var(--bg);
  border: 1px solid var(--stroke-color);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#profile {
  margin-top: 6px;
  margin-bottom: 48px;
  text-align: center;
  padding: 16px;
}

.avatar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  /*margin-bottom: -90px;*/
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.avatar-wrapper img {
  width: 360px;
  height: 180px;
}

#profile h1 {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  margin-top: 8px;
} 
#profile img {
  width: 280px;
  margin-bottom: 14px;
}

#profile p {
  font-weight: 500;
  line-height: 24px;
  /*margin-top: 8px;*/
  margin-bottom: 8px;
}

ul {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 16px;

  padding: 12px 0;
}

ul li a {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 16px 24px;
  /*Efeito de transparencia no fundo do elemento*/
  background: var(--surface-color);

  border: 1px solid var(--stroke-color);
  /*Arredondamento da borda do botão*/
  border-radius: 8px;
  /*Efeito de borrão, mancha*/
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  text-decoration: none;
  font-weight: 500;

  transition: background 0.2s;
}

ul li a:hover {
  background: var(--surface-color-hover);
  border: 1.5px solid var(--text-color);
}

@media (max-width: 350px) {
  .avatar-wrapper {
    width: 100%;
  }
}

footer p {
  height: 200px;
  font-size: 18px;
  text-align: center;
  padding: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);*/
}
