body {
  margin: 0;
  padding: 0;
  flex-direction: column;
  font-family: "Segoe UI";
}

nav {
  display: flex;
  justify-content: center;
  background-color: #4a93e7;
  font-family: "Segoe UI";
  text-align: center;
  position: fixed;
  width: 100%;
  height: clamp(20px, 4vw, 60px);
  top: 0;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
}

nav a {
  color: white;
  text-decoration: none;
  font-size: clamp(5px, 2.5vw, 40px);
  height: 100%;
  padding: 0px 2vw;
}

nav a:hover {
  background-color: white;
  color:#4a93e7;
}

#canvas1 {
  display: block;
  top: 10; left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid #ccc;
}

.about {
  display: flex;
  box-sizing: border-box;
  background-color: rgb(109, 150, 179);
  color: rgb(255, 255, 255);
  border-top: 3px solid rgb(34, 34, 34);
  border-bottom: 3px solid rgb(34, 34, 34);
  padding: 2vw 0;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.about .image {
  flex: 3;
  padding-left: 3vw;
}

.about .text {
  flex: 7;
  padding-left: 3vw;
  padding-right: 3vw;
  font-size: 2vw;
}

.about .image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.projectTypeButtons {
  display: flex;
  padding-left: 5vw;
  margin: 3vw 7vw 3vw 7vw;
  background-color: #cf7373;
  border-radius: 5px;
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.1);
  font-size: 2vw;
}

.button {
  flex: 1;
  color: white;
  background-color: #cf7373;
  text-align: center;
  display: inline-block;
  margin: 1.5vw 5vw;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  font-size: 2vw;
}

.button:hover {
  background-color: white;
  color: #cf7373;
}

.project {
  display: flex;
  box-sizing: border-box;
  color: black;
  border: 1px solid rgb(34, 34, 34);
  padding: 2vw 2vw;
  margin: 20px 5vw;
  border-radius: 5px;
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.project .image {
  flex: 3;
  padding-left: 3vw;
}

.project .text {
  flex: 7;
  padding-left: 3vw;
  padding-right: 3vw;
  font-size: 1.5vw;
}

.project .text a {
  color: black;
  text-decoration: none;
}

.project .text a:hover {
  text-decoration: underline;
}

.project .image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 1px solid rgb(34, 34, 34);
}

.info {
  text-align: center;
  box-sizing: border-box;
  padding: 20px;
  margin: 30px 0px 200px 0px;
  background-color: white;
  font-size: 2vw;
}

.info .icons {
  display: flex;
  justify-content: center;
  margin: 0px 10vw;
}

.info .icons a {
  display: flex;
  flex: 1;
  justify-content: center;
  color: black;
  margin: 0px 2vw;
  text-decoration: none;
}

.info .icons a:hover {
  text-decoration: underline;
}

.info .icons a img {
  width: 3vw;
  padding: 0px 5px;
}

.info .text {
  margin: 30px 3vw 0px 3vw;
}

.info .resume a {
  display: flex;
  justify-content: center;
  margin: 0px 27vw;
  color: black;
  text-decoration: none;
}

.info .resume a:hover {
  text-decoration: underline;
}

.info .resume a img {
  width: 4vw;
  padding: 0px 5px;
}

footer {
  background-color: #e4e4e4;
  text-align: center;
  padding: 1px;
  font-size: 1.5vw;
}