/* @media only screen and (max-width : 1200px),
       only screen and (max-height: 720px){
  body::after {
    content: 'Resolução não suportada em ecrãs inferiores a 1200 x 720';
    background-color: white;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12em;
  }
} */


/* Custom, iPhone Retina */ 
/* Extra Small Devices, Phones */ 
/* @media only screen and (max-width : 480px), 
       only screen and (max-height: 720px){
  body::after {
    background-image: url('../images/misc/mobile-size.svg') !important;
  }
} */

/* Small Devices, Tablets */
/* @media only screen and (max-width : 1200px),
       only screen and (max-height: 720px){
  body::after {
    background-image: url('../images/misc/screen-size.svg');
  }
} */

/* 
Custom, iPhone Retina
@media only screen and (min-width : 320px) {}
Extra Small Devices, Phones
@media only screen and (min-width : 480px) {}
Small Devices, Tablets
@media only screen and (min-width : 768px) {}
Medium Devices, Desktops
@media only screen and (min-width : 992px) {}
Large Devices, Wide Screens
@media only screen and (min-width : 1200px) {} 
*/