@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
#main{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/Kitchen-Taps-Silver.jpg);
    position: relative;
}
.info{
  position: absolute;
  top: 0;
  left: 0;
  padding: 35px 30px;
}
.info p{
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0;  
  margin-bottom: 5px;
}
.info a{
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}
@media only screen 
  and (max-device-width: 767px)
  and (orientation: portrait){
    #main{
        background-image: url(../img/tap_1_mobile.jpg);
    }
    .info{
      padding: 30px 25px;
    }
  }