body {
    height: 100%;
    width: 100;
    background-color: #000000;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.screen-third {
  position: fixed;
  top: 33.33vh;
  left: 33.33vw;
  width: 33.33vw;
  height: 33.33vh;
  z-index: 1000;
  pointer-events: auto;
}

.navbar {
    overflow: hidden;
    background-color: black;
    position: fixed;
    width: 100%;
    height: 10%;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 500;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbarflex {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    color: white;
    height: 100%;
    padding: 0% 40%;
}
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.hoverbox {
    background-image: url(images/darkmode.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 105%;
    justify-content: center;
    align-items: center;
    transition: transform 2.5s ease;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
}

.screen-third:hover ~ .hoverbox {
  transform: scale(1.6);
}

.headerbutton {
  background-color: black;
  color: white;
  border: none;
  font: inherit;
  cursor: pointer;
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.resume {
  color: white;
  background: none;
  z-index: 999;
  position: fixed;
  top: 0;
  margin: 1%;
  border-radius: 50%;
  font-size: 1em;
  background-color: black;
}

.container {
  width: 75%;
  margin-top: 6%;
  background-color: white;
  position: relative;
  display: inline-block;
}

.grey-top {
  width: 100%;
  height: 50px;
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
  font-size:xx-large;
}

.flexbox{
  display:flex;
  align-items: center;
  justify-content: center;
}

.titletext{
  position: absolute;
  top: -25px;
  left: 20px;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.bodytext{
  margin-top: 65px;
  margin-left: 20px;
  margin-right: 20px;
  font-size:larger;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.footer {
  width: 75%;
  margin-top: 6%;
  background-color: black;
  position: relative;
}