body, header, nav, main, footer, img {
    margin: 0;
    padding: 0;
    border: 0;
}
h1 {
        font-size: 50px;
        text-align: center;
}
h2 {
        font-size: 50px;
        text-align: center;
        text-shadow: 2px 2px 5px #292933;
}
nav {
        font-size: 30px;
        text-align: center;
}
main {
        font-size: 50px;
        text-align: center;
}
footer {
        font-size: 10px;
        text-align: center;
        border: solid 5px #05020b;
        border-radius: 15px;
}
img {
        width: 50%;
        height: auto;
        text-shadow: 5px 10px 8px #ccc;
}
body {
    background-image: url("stock.png");
    background-size: cover;
    min-height: 100vh;
}
img {
    border: solid 5px #05020b;
}
a {
    display: inline-block;
    padding: 5px 10px;
}
.tablet {
    display: block;
}
.mobile {
    display: block;
}
/* Tablets 769px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    nav {
        font-size: 25px; 
    }

    main {
        font-size: 14px; 
    }

    footer {
        font-size: 12px; 
    }
}
/* Smartphone 320px to 480px */
@media screen and (min-width: 320px) and (max-width: 480px) {
    nav {
        font-size: 20px; 
    }

    main {
        font-size: 13px; 
    }

    footer {
        font-size: 12px; 
    }
    body {
        background-color: black;
    }
}