* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: sans-serif;
  background-color: black;
}
.wrapper {
  display: flex;
  height: 100vh;
  background-image: url("../images/desktop_background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.sidebar {
  width: 15%;
  background-color: #e8f0cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0px;
  position: relative;
}
.sidebar-img {
  width: 95.6%;
  border-radius: 0%;
}
.jf-icon {
  width: 60px;
  margin: 10px 0;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 20px 0;
}
.menu-icon span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: black;
}
.tmcc-logo {
  width: 90px;
  position: absolute;
  bottom: 20px;
}
.content {
  width: 82%;
  padding: 30px;
  color: white;
}
.title-img {
  width: 50%;
  display: block;
  margin: 0 auto 30px auto;
}
.about-resources {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section {
  width: 48%;
}
.textbox {
  background-color: #e9eccf;
  color: black;
  padding: 20px;
  border-radius: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 10px;
  min-height: 120px;
}
.projects {
  text-align: center;
}
.project-row {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.project img {
  width: 80px;
  cursor: pointer;
  margin-bottom: 10px;
}
footer {
  margin-top: 40px;
  text-align: center;
  color: white;
}
footer a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}
