* {
    outline: 0;
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--text-primary);
    text-decoration: none;
}

body {
    height: 100%;
    width: 100%;
    padding: 30px 30px 0px;
    margin: 30px 30px 0px;
    text-justify: fit-content;
}

.Header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;

}

.Header h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 50px;
}

.Header span {
    font-size: 22px;
    margin: 10px 0px 10px;
    padding: 10px 0px 10px;
}

.salt-lamp {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0px 20px;
}

.salt-lamp img {
    width: 640px;
    height: 500px;
}

.salt-lamp span {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
}

.icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px 0px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.icons p {
    margin: 0px 15px 0px 0px;

}

.icons a {
    margin: 0px 5px 0px;

}

.icons a :hover {
    opacity: 0.60;
}

.container {
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    font-size: 22px;
    text-align: justify;
}

.container p {
    margin: 12px 0px 12px
}

.container a {
    text-decoration: underline;
}

.ad img {
    width: 546px;
    height: 806px;
}

.ad p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    margin: 0;
}
.container .para3{
    margin-top: 25px;
}


/* An attempt to make it mobile friendly by reducing the size of the image and font size*/

@media (max-width: 950px) {
    body {
        padding: 20px 20px 0px;
        margin: 20px 20px 0px;
    }

    .Header h1 {
        font-size: 40px;
    }

    .Header span {
        font-size: 18px;
    }

    .salt-lamp img {
        width: 550px;
        height: 270px;
    }

    .container {
        font-size: 19px;
        line-height: 20px;
    }

    .ad img {
        width: 550px;
        height: 600px;
    }

    .salt-lamp span {
        font-size: 7px;
    }
}

@media (max-width: 800px) {
    .Header h1 {
        font-size: 30px;
    }

    .Header span {
        font-size: 15px;
    }

    .salt-lamp img {
        width: 450px;
        height: 250px;
    }

    .container {
        font-size: 15px;
    }

    .ad img {
        width: 400px;
        height: 600px;
    }

    .ad p {
        font-size: 8px;
    }

    .icons {
        font-size: 15px;
    }


}


