.portfolio {
  width: 100%;
  height: 100%;
  background-color: #262626;
  position: relative;
  padding-bottom: 60px;
}

.flex-port {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0px auto;


}

.card img {
  border-radius: 5px;
  cursor: pointer;
  box-shadow: -6px 8px 5px 0px rgba(85, 85, 85, 0.607);

}

.card img:hover {
  border-radius: 50px;
  transition: all 0.5s;

}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  background-color: #57b0e3;
  border: 1px solid #57b0e3;
  border-radius: 3px;
  cursor: pointer;
}

.btn a:hover {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  background-color: #262626;
  border: 1px solid #57b0e3;
  border-radius: 5px;
  transition: all 0.5s;
}