/* Style Settings */
@import url("//fonts.googleapis.com/css?family=Permanent+Marker&display=swap");
:root {
  --bgColor: rgb(255, 230, 184);
  --accentColor: #2fc24f;
  --font: "Permanent Marker", cursive;
}

body {
  background: center bottom url(images/background.svg) no-repeat;
  background-color: var(--bgColor);
  background-size: cover;
  min-height: 100vh;
  text-align: center;
}

a {
  text-decoration: none;
}

#userPhoto {
  width: 96px;
  height: 96px;
  display: block;
  margin: 35px auto 20px;
  border-radius: 50%;
}

#userName {
  color: #999;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  font-family: var(--font);
  width: 100%;
  text-align: center;
}

#description {
  display: inline-block;
  background-color: var(--accentColor);
  color: var(--bgColor);
  font-family: var(--font);
  text-align: center;
  margin-bottom: 20px;
  padding: 17px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
  border: solid var(--accentColor) 2px;
}

#links {
  max-width: 675px;
  width: auto;
  display: block;
  margin: 27px auto;
}

.link {
  display: block;
  background-color: var(--accentColor);
  color: var(--bgColor);
  font-family: var(--font);
  text-align: center;
  margin-bottom: 20px;
  padding: 17px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
  border: solid var(--accentColor) 2px;
}

.link:hover {
  background-color: var(--bgColor);
  color: var(--accentColor);
}

ion-icon {
  vertical-align: text-bottom;
  width: 1.1875em;
  height: 1.1875em;
}
