html {
  background: url("../../assets/nav_images/sideblob.png") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fcf7eb;
}

header {
  float: right;
  display: block;
  margin-right: 2%;
}
footer {
  display: block;
  position: fixed; /* Set the navbar to fixed position */
  bottom: 0;
  z-index: 10;
}

#name {
  z-index: 100;
  font-size: 72px;
  color: #2f2235;
  margin-top: 5%;
  font-family: "Luxurious Roman";
  font-weight: bold;
}

body {
  overflow: hidden;
}

nav {
  overflow: hidden;
  position: fixed;
  z-index: 2;
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 175px; /* Set the width of the sidebar */
  top: 0; /* Stay at the top */
  left: 0;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
  padding-left: 10px;
}

/* Navbar links */
a {
  font-size: 42px;
  font-family: "Luxurious Roman";
  font-weight: bold;
  float: left;
  display: block;
  color: #fcf7eb;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}
a:hover {
  color: #2f2235;
}

.texty {
  position: fixed;
  height: auto;
  padding: 2%;
  margin-right: 2%;
  margin-bottom: 2%;
  top: 40%;
  left: 47%;
}

.email {
  text-align: center;
  font-size: 22px;
  color: #2f2235;
  margin-top: 5%;
  font-family: "Luxurious Roman";
  font-weight: bold;
}


@media (max-width: 1280px) {

  html{
    background: none;
    background-color: #fcf7eb;
  }
  nav{
    height:auto;
    position: relative;
  }
  a{
    color: #2f2235;
  }
  #name{
    padding-left: 10px;
  }
}

@media (max-width: 500px) {
  html{
    background: none;
    background-color: #fcf7eb;
  }
  nav{
    height:auto;
    position: absolute;
    width: auto;
    top: 25vh;
  }
  a{
    color: #2f2235;
    font-size: 16px;
  }
  .texty {
    display: flex;
    position: absolute;
    top: 40vh;
    text-align: center;
    left: unset;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: unset;
    margin-right: unset;
  }
  #name{
    padding-left: 10px;
  }
}