html,
body {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*,
* ::before,
*::after {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: 'Inter', sans-serif;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  cursor: default;
}

a {
  text-decoration: none;
}

.display {
  display: block;
}

.hide {
  display: none;
}


/* ——— HEADER CONTENT ——— */

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-top: 2.5%;
  margin-bottom: 2.5%;
  margin-left: 5%;
  margin-right: 5%;
}

.headeritem {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.headergroup {
  display: flex;
  flex-direction: row;

}

#headername:hover {
  color: #0000FF;
  cursor: pointer;
}

#headerworktab, #headerinfotab {
  margin-left: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
}


#headerworktab:hover, #headerinfotab:hover {
  border: 1px solid #000000;
}

.activepage {
  color: #FFFFFF;
  background-color: #000000;
}

.inactivepage {
  color: #000000;
  background-color: none;
}

/* ——— WORK PAGE CONTENT ——— */

.content {
  width: 100%;
}

.project {
  padding-bottom: 2.5%;
}

img {
  width: 100%;
}

.projecttext {
  margin-left: 5%;
  margin-right: 5%;
}

.projectdescription > a {
  color: #000000;
  text-decoration: underline;
}

.projectdescription > a:hover {
  color: #0000FF;
  text-decoration: underline;
}

.projecttitle {
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.projectdescription {
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: 0;
}

.footer {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
  border-top: 1px solid #000000;

}

/* ——— INFO CONTENT ——— */


#contentinfo {
  width: 50%;
  margin-top: 50px;
  margin-left: 5%;

}

#contentinfo > p {
  font-size: 26px;
  line-height: 36px;
}

.infolink {
  color: #000000;
}

.infolink:hover {
  color: #0000FF;
}

.buttons {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;

}

#contactbutton {
  width: 140px;
  background-color: #000000;
  text-align: center;
  font-size: 13px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
}

#buttonlink {
  color: #FFFFFF;
}

#contactbutton {
  cursor: pointer;
}

#buttonlink {
  cursor: pointer;
}

#resumebutton {
  margin-left: 25px;
  width: 140px;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  text-align: center;
  font-size: 13px;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000000;
}

#resumelink {
  color: #000000;
}

#resumebutton:hover {
  cursor: pointer;
}

#resumelink:hover {
  cursor: pointer;
}

/* ——— TABLET/MOBILE ——— */

@media (max-width: 768px) {

  .header {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
  }

  #headerworktab:hover, #headerinfotab:hover {
    color: #FFFFFF;
    background-color: #000000;
  }

  .project {
    margin-bottom: 5%;
  }

  .projecttitle {
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .projecttext {
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }

  #contentinfo {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  #contactbutton {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  #resumebutton {
    padding-top: 5px;
    padding-bottom: 5px;
  }

}