/* -------------------------------------------------------- */
/* FONTS */
/* -------------------------------------------------------- */

@font-face {
font-family: font name here;
src: url(link to font goes here);
}

@font-face {
font-family: font name here;
src: url(link to font goes here);
}

@font-face {
font-family: font name here;
src: url(link to font goes here);
}


/* -------------------------------------------------------- */
/* CURSOR */
/* -------------------------------------------------------- */

/* Apply to the whole page */
body {
  cursor: url('images/cake cursor.webp'), auto;
}

/* Apply only to links */
a {
  cursor: url('images/cake cursor.webp'), pointer;
}

/* -------------------------------------------------------- */
/* BACKGROUND */
/* -------------------------------------------------------- */

body {
  background-image: url("images/pinkwhitebg.jpg");
  background-repeat: no-repeat; /* Prevents the image from tiling */
  background-position: none;  /* Centers the image */
  background-size: cover;      /* Scales image to cover the entire container */
  background-attachment: fixed; /* Creates a parallax scrolling effect */
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  overflow: hidden;
  background-color:#FFBDED;
  width:1200px;
  height:100px;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  border-radius:20px;
  color: black;
}

.header a.active {
  border-radius: 20px;
  background-color: pink;
  color: black;
}

.header-right {
  float: right;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}
/* -------------------------------------------------------- */
/* PROFILE CONTENT */
/* -------------------------------------------------------- */
.profile-bio {
border-width:7px;
  border-style:solid;
  border-image: url("https://i.imgur.com/ROjUrNz.gif") 6 fill round;
  margin: auto;
  margin-top: 20px;
  margin-left:20px;
  width: 300px;
  height: 800px;
  position: relative;
  padding: 5px;
  z-index: 4;
}

#pfp{
   width: 100%;
  height: 100%;
  background-image: url('images/web blog pfp.png');
  border-radius: 10px;
  background-size: cover;
}
.pfp-border{
  border-width: 7px;
  border-style: solid;
  border-image: url("https://img-fotki.yandex.ru/get/4602/28257045.844/0_7d5c6_2de543e9_XXXL") 35 fill round;   
  border-radius: 15px;
  background-repeat: repeat;
  width: 200px;
  position: relative;
  left: 30px;
  height:200px;
  z-index: 5;
}





