/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.container{
  background: url(../images/bg-grey.jpg);
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;

}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

p{
    font-family: 'Poppins', sans-serif;
}

h1, h3{
    margin: 15px 0px 20px 0px;
    font-family: 'Ubuntu', sans-serif;
}