@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --main-dark: #252525;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
}

body {
  background: url("images/nature-shiny.jpg") no-repeat center center fixed;
  background-size: cover;
}

header {
  margin: 1em 0 4.5em 0;
  text-align: center;
  display: grid;
  place-items: center;
}

#profile {
  width: 6.7em;
  height: 6.7em;
  border-radius: 50%;
  border: 1px solid white;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.9em;
}

#profile-text {
  font-size: 0.8em;
  padding: 0.3em 0.5em;
  background-color: var(--main-dark);
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
  border-radius: 0.8rem;
  color: white;
  border: 1px solid white;
}

ul {
  display: grid;
  font-size: 0.9em;
  gap: 1.5em;
  place-items: center;
}

li {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(2px);
  width: 16.7rem;
  max-width: 20.4rem;
  height: 3.3em;
  border-radius: 5em;
  display: grid;
}

a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
  color: var(--main-dark);
}

#vanta {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
