* {
  margin: 0;
  padding: 0;
}

section {
  min-height: 70vh;
  background: url("./img/codebeat_art.jpg") no-repeat center center fixed; 
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 7rem;
}

.business-card {
  background-color: #e3e3e3d0;
  height: 35vh;
  width: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 2px #f3f2f2;
  border-radius: 5px;

}

.header-bg {
  background-color: #0A9FD1;
  width: 18rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 1rem 0;
}

.header-bg h1 {
  font-family: 'Audiowide', cursive;
  margin: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  color: #fff;
}

p {
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.email {
  margin-top: 2rem;
}

.email a {
  text-decoration: none;
  color: rgb(20, 20, 20);
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.email a:hover {
  color: rgb(10, 159, 209);
}

/* Mobile */
@media only screen and (max-width: 500px) {
  section {
    min-height: 80vh;
    background: url("./img/bg-img.jpg") no-repeat center center fixed; 
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }

  .business-card {
    background-color: #e3e3e360;
    height: 35vh;
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #e3e3e3;
    border-radius: 5px;
  }
  
  .email a {
    color: rgb(10, 159, 209);
  }

}