* {
  box-sizing: border-box;
}

body {
  font-family: 'Josefin Sans', Helvetica, Verdana, sans-serif;
  font-size: 16px;
  letter-spacing: .015em;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 2, 6, 0.6), rgba(55, 55, 55, 0.3)),
    url(../images/profilepic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: rgb(193, 212, 255);
}

h1 {
  font-family: 'Dancing Script', Arial, cursive;
  margin: 0 auto;
  font-size: 44px;
}

h2 {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Dancing Script', Arial, cursive;
  font-size-adjust: 0.50;
/*   font-size: 23px; */
  text-shadow: 1px 1px #000;
  text-transform: capitalize;
  letter-spacing: .14em;
  font-weight: bold;
}

/*                           Header section */

header {
  background-color: #00001a;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1;
  color: #fff;
}

header p {
  margin-top: 0;
  text-decoration: overline;
}

/*                        Navigation bar section */
nav {
  border-bottom: 2px solid #000;
  border-width: 50%;
  padding-bottom: 10px;
}

nav a {
  text-decoration: none;
  display: inline;
  color: #000;
  margin: 2px;
  padding: 6px;
  border-radius: 12px;
  background-color: rgb(193, 212, 255);
}

nav a:hover {
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

/*                           Floats and clear section  */
.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

/*                          Information section #info */
#info {
  width: 960px;
  margin: 0 auto;
  color: rgb(193, 212, 255);
  text-shadow: 1px 1px #000;
  font-size: 20px;
}

#info a {
  color: rgb(193, 212, 255);
  text-shadow: 1px 1px #000;
  text-decoration: underline;
}

#info a:hover {
  color: #42426c;
  text-shadow: 1px 1px 1px #000;
}

/*                           Footer section */
footer {
  margin: 0 auto;
  margin-top: 10px;
  width: 100%;
  padding-top: 10px;
  background-color: #00001a;
  position: sticky;
  bottom: 0;
  color: rgb(193, 212, 255);
  text-shadow: 1px 1px #000;
  margin-bottom: 0;
  padding-bottom: 0;
}

footer ul {
  margin-bottom: 0;
}

footer li {
  display: inline;
  font-size: 13px;
}

footer a {
  color: rgb(193, 212, 255);
  text-shadow: 1px 1px #000;
  text-decoration: underline;
}

/* Media screen section for different resolutions */
@media only screen and (min-width: 986px) {
  footer {
    position: fixed;
    bottom: 0;
  }
}