@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.navbar {
  position: fixed;
  background: #333 ;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 60px;
  padding: 0 20px;
}

a{
  outline: none;
  text-decoration: none;
}

.sidebar {
  position: fixed;
  top: 60px;
  width: 260px;
  height: calc(100% - 60px);
  background: #c2bcbc ;
}

.sidebar img {
  width: 50%;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 68px;
  margin-top: 30px;
}

.main {
  min-width: calc(100% - 260px);
  left: 260px;
  background: #fff;
  margin-left: 260px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-top: 65px;
}

.btn-group {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
}

.btn {
  background-color: #e49800;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  outline: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 40px;
  width: 120px;
}

.main > .boxes {
  border: 1px solid #000;
  min-height: 300px;
  width: 45%;
  border-radius: 10px;
}

.boxes > h2 {
  text-align: center;
}

.boxes > img {
  width: 90%;
  padding-left: 50px;
  height: 150px;
  object-fit: cover;
}

.sidebar > div > h3 {
  text-align: center;
}

.main > div > button {
  margin-left: 45%;
  padding: 5px 10px;
  outline: none;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background-color: #FF0000;
  color: #ffffff;
  cursor: pointer;
}
