

body {
  margin: 0px;
  font-family:'Courier New', Courier, monospace
}
.container {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  box-sizing: border-box;
  gap: 0;
  padding: 0;
  background-color: #111111;
}
.navbar {
  border: 0px solid rgb(96 139 168);
  width: 6vw;
  flex-direction: column;
  display: flex;
  background-color: #141414;
  align-items: center;
  justify-content: space-between;
}


#EZ{  
  color: #00aaff;
  text-shadow:-6px 3px 0px #3b3b3b;
  font-size: 3vw;
  justify-self: center;
  align-self: center;
}
#EZ:hover {
  color: white;
}

.navbar a{
  color: white;
  font-size: 3vw;
}
.navbar a:hover {
  color: #00aaff;
  
}

.picture {
  position: relative;
  display: inline-block;
  max-width: 50%;
  height: 95vh;
  margin-right: 1%;
  margin-top: 1%
}

.picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  
}
.overlay h1 {
  color: white;
  font-size: 5vw;
  margin: 0;
}
.overlay h1:hover {
  color:#00aaff;
}
.overlay h2 {

  font-size: 3vw;
  margin: 0;
  color: #00aaff;
}
.overlay h2:hover {
  color:white;
}
.overlay p a{
  color: white;
  margin: 1vh;
  font-size: 2vw;
  text-decoration: none;
}
.overlay p a:hover {
  color: #00aaff;
}
.rightwing {
  display: flex;
  flex-direction: column;
  border: 0px solid rgb(96 139 168);
  background-color: #111111;
  height: 95vh;
  overflow-y: auto;
  scrollbar-width: none;
  width: 25vw;
}
.rightwing::-webkit-scrollbar {
  display: none;
}
.resume {
  border: 0px solid rgb(96 139 168);
}
.resume h2 {
  color: white;
  font-size: 90px;
  margin: 0px;
  margin-bottom: 20px;
}
.resume #one {
  color: #00aaff;
}
.summary {
  color: white;
  max-width: 600px;
  line-height: 1.3;
}
hr {
width: 90%
}
.skills {
  border: 0px solid rgb(96 139 168);
  margin-top: 0px
}
.skills h1 {
  color: white;
}
.skills h3 {
  color: white;
}
.skills li {
  color: #00aaff;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .navbar {
    width: 100%;
    flex-direction: row;
  }
  #EZ {
    font-size: 8vw;
    margin-left: 15px;
  }
  .navbar a {
    font-size: 10vw;
    margin-right: 15px;
  }
  .picture {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-right: 0;
  }
  .picture img {
    height: auto;
    object-fit: contain;
  }
  .overlay h1 {
    font-size: 9vw;
  }
  .overlay h2 {
    font-size: 6vw;
  }
  .overlay p a {
    font-size: 6vw;
  }
  .rightwing {
    width: 100%;
    height: auto;
    overflow-y: visible;
    box-sizing: border-box;
    padding: 4vw;
  }
  .resume h2 {
    font-size: 16vw;
  }
}
