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

html {
  height: 100%;
}

body {
  padding: 2rem;
  font-family: "Rubik", sans-serif;

  background-color: #f6f6f6;
  background-image: url("/assets/IMG_6298_init10.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  color: #ffffff;
  text-shadow: 2px 2px 8px #000000;
  min-height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 2.5rem;
  border: 3px solid #f6f6f6;
  box-shadow: 0px 16px 40px #ffd4b0;
}

header {
  margin-bottom: 3rem;
  text-align: center;
}

header p {
  font-weight: 300;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px #000000
}

header h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 85%;
}

nav {
  width: 100%;
  display: block;
  max-width: 380px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;

  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;

  box-shadow: 0px 0.5rem 1.5rem -0.25rem var(--link-color);
  background-color: var(--link-color);

  transition: box-shadow 0.5s;
}

a:hover {
  box-shadow: 0px 0.5rem 1.5rem 0rem var(--link-color);
}

i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

#flowcrypt {
  --link-color: #31A217;
} 
#linkedin {
  --link-color: #0077b5;
}

#github {
  --link-color: #333;
}

#paypal {
  --link-color: #183153;
}

#spotify {
  --link-color: #1DB954;
}

#website {
  --link-color: #673ab7;
}
