div {
    background-color: #333;
    padding: 0;
    margin: 0;
    height: 95vh;
    width: 99vw;
}

body {
  background-color: #333;
    padding: 0;
    margin: 0;
    margin-right: 2vw;
    height: 95vh;
    width: 95vw;
    overflow: auto;
}

.nav{
  box-shadow: 0px 2px rgb(39, 39, 39);
  /* box-shadow: 0px 2px #393939; */
  margin-bottom: -4vh;
  
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: right;
}

#name {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
.nbar:hover, .current {
  background-color: rgb(39, 39, 39);
  color: green;
  box-shadow: inset 0px -5px;
  transition: all .3s;
}

.current {
  color: green;
}

img {
  display: block;
  border: solid 1px black;
  /* scale: calc(.25, 100vw); */
  /* transform: scale(.25*100%); */
  min-width: 120px;
  width: 15vw;
  border-radius: 1000px;
  /* padding: -1000px; */
  margin: 70px;
  margin-bottom: 0;
  margin-right: 2vw;
  float: left;
  
}

#name {
  scale: 2;
  color: white;
  text-shadow: 1px 1px green;
  margin-left: 4em;
  /* margin-right: auto; */
}

/* #name:hover {
  color:green;
  text-shadow: 2px 2px white;
} */

.content {
  width: 95vw;
  margin-left: 3em;
  padding-right: 2em;
  margin-right: 2em;
  height: 95vh;
  /* margin-top: -2vh; */
}

.blurb {
  /* margin-top: 100px; */
  font-size: 2em;
  color: lightgray;
  overflow-wrap: break-word;
  margin-top: -5vh;

  padding-top: 10vh;
  /* align-content: center; */
  
  /* margin-right: 10vw; */
}

/* .about {
  float: right;
  font-size: 4em;
  margin-right: 8em;
  margin-left: 5em;
  margin-left: 5em;
} */


@media (max-width: 640px) {
  /* Styles for screens smaller than 640px */

  img {
    float: none; /* Remove the float */
    margin: 70px auto; /* Center the image */
    width: 60vw; /* Make the image take up most of the screen width */
    /* margin-bottom: 0.5em; Add some space between the image and the text */
  }

  .blurb {
    margin-top: -30vh; /* Remove the negative margin that was pushing the text up */
    text-align: left; /* Center the text */
  }

  #name {
    float: none; /* Remove the float */
    width: 100vw; /* Make the name take up the full width */
    text-align: center; /* Center the text */
    margin: 0;
  }

  ul {
    float: none; /* Remove the float */
    width: 100vw; /* Make the ul take up the full width */
    text-align: center; /* Center the text */
    margin: 0;
    padding-left: 0;
    margin-left: -1.5em;
    margin-top: 1em; /* Add some spacing between the name and the ul */
  }
}