body {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: var(--clr-dark);
}

.header {
  margin: 0;  
  font-size: 38px;
  width: 100%;
  height: 110px;
  position: fixed;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  background-color: var(--clr-dark);
  color: white;
  
  
}

.header h1 {
  margin-left: 50px;
  padding: 0;
}

.header-btn{
  width: 100px;
  height: 50%;
  margin-right: 50px;
  background-color: var(--clr-dark);
  color: white;
  font-size: 28px;
}

.header-btn a{
  text-decoration: none;
  color: white;
  font-size: 28px;
}

.spacer{
  width: 100%;
  height: 80px;
}

.web-dev-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
 
}

.web-dev {
  box-sizing: border-box;
  display: flex;
  margin: 20px;  
  
  width: 95%;  
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--clr-dark);
  background-image: url(../Images/laptop.png);
  background-size: cover;
  background-blend-mode: multiply;
  color: var(--bg-white);
  text-align: center;
  background-position: 50% 50%;
  padding: 10px 0;
}

.web-dev-card {
  
  border: 2px solid aqua;
  border-radius: 25px;
  box-sizing: border-box;
  display: flex;
  padding: 10px;
  text-align: left;  
  margin: 10px; 
  width: 45%;
}

.web-dev-card > .left-col {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 50%;
}

.web-dev-card > .right-col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.web-dev-card img {
  height: 200px;
  width: 200px;
  border-radius: 25px;
  border: 1px solid white;
}

.web-dev-card a {
  text-decoration: none;
  color: white;
  font-size: var(--button-size);
}

.web-dev-card a:hover {
  text-decoration: underline;
  color: greenyellow;
}
