* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background-color: #282d33;
}

.spacer {
  height: 10px;
}

.main {
  padding: 60px;
  width: 500px;
}

h1 {
  color: #d1d1c9;
  font-weight: 500;
  font-size: 40px;
}

p {
  font-weight: 200;
  font-size: 20px;
  color: #d1d1c9;
}

a {
  text-decoration: none;
  font-weight: 500;
  color: #d1d1c9;
}

span {
  text-decoration: none;
  font-weight: 500;
  color: #d1d1c9;
}

/* @media (min-width: 1281px) {
} */

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

/* @media (min-width: 1025px) and (max-width: 1280px) {
} */

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

/* @media (min-width: 768px) and (max-width: 1024px) {
} */

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .main {
    padding: 20px 0px 0px 25px;
    width: 90%;
  }

  h1 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  .main {
    padding: 20px 0px 0px 25px;
    width: 90%;
  }

  h1 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  .main {
    padding: 20px 0px 0px 25px;
    width: 90%;
  }

  h1 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }
}
