* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: white;
  font-family: Inter;
  font-size: 1rem;
}
:root {
  secondary-color: #9dc7c8;
  background-color: #514948;
  primary-color: #6a3937;
  accent-color: #748386;
  text-color: #c90f1f;
  font-size: 1rem;
}

main {
  /* height: 90vh; */
}
#container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
#card {
  border: solid 3px #09b6b9;
  width: 90%;
  height: 25rem;
  border-radius: 0.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.item {
  background-color: #6a3937;
  width: 80%;
  height: 3.125rem;
  gap: 0.625rem;
  padding: 0 0.3125rem;

  /* text-align: center; */
  text-decoration: none;
  border-radius: 0.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

:hover.item {
  background-color: #3d2120;
}
#nav {
  margin: 0 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a {
  text-decoration: none;
}
:hover a {
}
#links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.25rem;
}
.one-project {
  font-size: 2rem;
}
