* {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: #eeeeee;
  background-color: #222831;
  margin: 0;
  padding: 0;
  font-weight: 600;
}
.header-container {
  display: flex;
}
.header {
  font-size: 72px;
  /* border: 1px solid green; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
}
.about-container {
  display: flex;
}
.about {
  display: flex;
  height: 100px;
  width: 250px;
  font-size: 4rem;
  border: 3px solid transparent;
  border-radius: 10px;
  justify-content: center;
  align-items: space-between;
  margin: auto;
  transition: border-color 0.4s;
  margin-top: 10px;
  text-decoration:none;
}
.about:hover {
  border-color: #00adb5;
}
.button-container {
  display: flex;
}
.box {
  display: flex;
  /* border: 1px solid green; */
  height: 200px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.button {
  display: flex;
  border: 3px solid transparent;
  flex-direction: column;
  width: 5em;
  height: auto;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
  margin: 5px;
  transition: border-color 0.4s;
  padding: 20px 0;
}
.button:hover {
  border-color: #00adb5;
}
.button img {
  height: 4em;
  width: 4em;
}
.project-container {
  display: flex;
  height: auto;
  width: auto;
  flex-direction: column;
  /* border: 1px solid green; */
  justify-content: center;
  align-items: center;
  
}
.project-header {
  display: flex;
  /* border: 1px solid yellow; */
  font-size: 2em;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.center-container {
  display: flex;
  /* border: 1px solid red; */
  height: 300px;
  width: 50%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
}
.project-item {
  display: flex;
  flex-direction: column;
  height:auto;
  width: auto;
  border: 3px solid transparent;
  border-radius: 8px;
  flex: 1;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s;
  margin: 20px 0;
}
.project-item:hover{
  border-color: #00adb5;
  font-weight: bold;
}
.project-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
}
.project-item img {
  height: 200px;
  width: 300px;
  margin-bottom: 10px;
}
.first-container{
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto; 
  /* border: 1px solid red; */
  align-items: center;
  text-align: center;
  font-size: 24px;
  justify-content: center;
}
.info-container{
  display: flex;
  flex-direction: column;
  /* border: 1px solid purple; */
}
.edu-container{
  display: flex;
  /* border: 1px solid orange; */
  flex-direction: column;
  margin-top: 10px;
}
.first-container h1{
  margin: 30px;
}
.first-container h2{
  margin: 10px 0;
}
