* {
  font-family: monaco;
}

body {
  width: 80%;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 260px;
}

p {
  font-size: 22px;
  text-align: justify;
}

.header {
  background-color: rgb(80, 143, 89);
  display: flex;
  padding: 5px 0px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 80%;
  margin: 0px auto;
  z-index: 1000;
}

.header h1 {
  color: white;
  font-size: 17px;
  margin: 0px 25px;
}

.header button {
  background-color: #226c2b;
  border: none;
  color: white;
  padding: 6px 15px;
  font-size: 12px;
  border-radius: 12px;
  margin: 0px 20px;
}

.header button:hover {
  background-color: #1d5d24;
  color: white;
}

.header button:active {
  background-color: #174b1d;
  color: white;
}

.menubar {
  background-color: rgb(129, 184, 137);
  opacity: .8;
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  margin: 0px auto;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.menubar:hover {
  opacity: .95;
  transition: all .3s;
}

.menubar a {
  color: white;
  font-size: 28px;
  margin: 0px 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .15s;
}

.menubar a:hover {
  color: rgb(183, 243, 168);
  text-decoration-color: rgb(183, 243, 168);
}

.menubar a:active {
  color: rgb(72, 129, 63);
  text-decoration-color: rgb(72, 129, 63);
}

.home_content {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  overflow: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home_content h1 {
  font-size: 30px;
  margin-bottom: 100px;
}

.home_content .photo img {
  
}

.home_content .text p {
  
}

.portfolio_content {
  width: 80%;
  margin: 0px auto;
  overflow: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio_content a {
  color:rgb(72, 129, 63)
}

.portfolio_content a:hover {
  color:rgb(50, 95, 43)
}

.portfolio_content .title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 70px;
}

.portfolio_content .project {
  display: flex;
  margin: 0px 30px;
  margin-top: 60px;
  align-items: center;
}

.portfolio_content .project img {
  max-width: 500px;
  margin: 20px 20px;
}

.portfolio_content .project .description {
  display: flex;
  flex-direction: column;
  margin: 20px 20px;
}

.portfolio_content .project .description h2 {
  margin-bottom: 5px;
}

.portfolio_content .future_project {
  display: flex;
  flex-direction: column;
  margin: 0px 30px;
}

.portfolio_content .future_project h2 {
  font-size: 30px;
}

.portfolio_content .future_project .photos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.portfolio_content .future_project video {
  margin: 35px 0px;
  display: flex;
  max-width: 700px;
  left: 50%;
  transform: translateX(50%);
}

.portfolio_content .future_project img {
  max-width: 500px;
  margin: 25px 25px;
}

.portfolio_content .future_project p {
  margin: 10px 35px;
}

.qualifications_content {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  overflow: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qualifications_content .title {
  font-size: 30px;
  margin-bottom: 130px;
}

.qualifications_content .downloads {
  margin-top: 40px;
  margin-bottom: 30px;
}

.qualifications_content .downloads img {
  max-width: 25px;
  margin-right: 8px;
  vertical-align: middle;
}

.qualifications_content .downloads a {
  background-color: #226c2b;
  border: none;
  color: white;
  padding: 12px 18px;
  font-size: 18px;
  border-radius: 12px;
  margin: 0px 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.qualifications_content .downloads a:hover {
  background-color: #1d5d24;
  text-decoration-color: white;
}

.qualifications_content .downloads a:active {
  color: rgb(72, 129, 63);
  text-decoration-color: white;
}

.qualifications_content .qualifs {
  
}

.qualifications_content .qualifs .col {
  
}

.service_content {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  overflow: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service_content a {
  color:rgb(72, 129, 63)
}

.service_content a:hover {
  color:rgb(50, 95, 43)
}

.service_content .title {
  font-size: 30px;
  margin-bottom: 130px;
}

.service_content .projects {
  
}

.service_content .projects .project {
  
}

.service_content .projects .project img {
  
}

.aipage_content {
  
}

.aipage_content img {
  
}

.aipage_content h1 {
  
}

.aipage_content p {
  
}

.footer {
  background-color: rgb(80, 143, 89);
  text-align: center;
  padding: 15px 0px;
  width: 100%;
}

.footer p {
  color: white;
  font-size: 15px;
  margin: 0px;
  text-align: center;
}