body {
  /* The image used */
  background-image: url("wallpaper.jpg");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  font-family: "B612", B612;
  letter-spacing: 2px;
}

.profile-name {
  text-align: center;

  color: white;
  padding: 30px;
  font-size: 35px;
    /* Adding the 3D effect and outline using text-shadow */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6),   /* Shadow for depth */
    -2px -2px 5px rgba(0, 0, 0, 0.6),  /* Shadow for depth */
    2px -2px 5px rgba(0, 0, 0, 0.6),   /* Shadow for depth */
    -2px 2px 5px rgba(0, 0, 0, 0.6);   /* Shadow for depth */
}

.profile-info {
  text-align: center;

  padding: 30px;
  font-size: 35px;
}

.Out-lined-Text {
  text-align: center;
  margin-top: 20px;
  border: 1px solid Gray;
  border-width: 2px;
  padding: 20px;

  width: 290px;
  display: block;
  margin-left: auto;
  margin-right: auto;

  border-radius: 40px;

  font-size: 25px;
}

.links {
  text-align: center;
  margin-top: 20px;
  border: 1px solid Gray;
  border-width: 2px;
  padding: 20px;

  width: 290px;
  display: block;
  margin-left: auto;
  margin-right: auto;

  border-radius: 40px;

  font-size: 25px;
}

a {
  text-decoration: none;

  color: white;
  background-color: rgba(128, 128, 128, 0.3);;
  transition: color 1s;
}

a:hover {
  color: black;
  background-color: white;
}

.footer { 
       position: fixed;     
       text-align: center;    
       bottom: 0px; 
       width: 100%;
	   color: white;
}
