body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  text-align: center;
  background-image: url("../assets/stars_fullscreen.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #173779;
  background-position: center center;
}

* {
  box-sizing: inherit;
}

#wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#link-tree-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #6cd1fd;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  #link-tree-container {
    width: 30%;
  }
}

.avatar {
  align-self: center;
  text-align: center;
  font-size: 1.5em;
  margin-top: 60px;
}

.avatar img {
  border-radius: 50%;
  border-style: none;
  width: 150px;
  height: 150px;
}

.avatar p {
  margin-top: 0;
}

#link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link {
  margin: 15px;
  padding: 10px;
  font-size: 1.5em;
  background-color: aliceblue;
  text-align: center;
  border-radius: 15px;
  color: #173779;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.link:hover {
  background-color: #6cd1fd;
  color: aliceblue;
}

a {
  text-decoration: none;
}
