

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    background-color: rgb(0, 0, 0);
    overflow-x: hidden;
    background-size: 100%;
    font-family: Georgia, serif;
}


header {
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    align-items: center;

    padding: 10px 30px;
    z-index: 10;
}

header h1 {
    margin: 0;
    font-size: 30px;
}




button {
    opacity: 0.9;
    border: none;
    background: transparent;
    appearance: none;
    color: white;

    padding: 10px;
    margin-left: 20px;

    border-radius: 5px;
    outline: none;

    -webkit-tap-highlight-color: transparent;

    font-size: 16px;
    font-family: Georgia, serif;
}

button:hover {
    cursor: pointer;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}



.shop-button {
    position: absolute;
    bottom: 8%;
    left: 5%;

    padding: 10px 20px;
    margin-left: 0;

    font-size: 16px;
    opacity: 0.7;
    color: white;

    border-radius: 5px;
    border: 1px solid white;
    cursor: pointer;
}

.shop-button:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}



body h2 {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    min-height: 100svh;

    margin: 0;
    padding: 20px;

    color: white;
    font-family: Georgia, serif;
    text-align: center;
}

body h5 {
    position: absolute;
    bottom: 0;
    left: 5%;

    padding: 10px 20px;
    margin: 0;

    font-size: 16px;
    color: white;
    font-family: Georgia, serif;
}



.Welcome,
.Mission,
.Services {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Welcome {
    font-size: 34px;
}

.Welcome1 {
    background-image: url("Photos/Earth1.jpg");
}

.Mission1 {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(219, 215, 215, 0.2)
        );
}

.Services1 {
    background:
        linear-gradient(
            to bottom,
            rgba(219, 215, 215, 0.2),
            rgba(219, 215, 215, 0.981)
        );
}

.Mission1 h4 {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    min-height: 100svh;

    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;

    color: white;
    font-family: Georgia, serif;
    font-size: 34px;
    text-align: center;
}




main {
    flex: 1;
}

footer {
    position: relative;
    width: 100%;
    min-height: 50px;

    padding: 15px;

    color: white;
    text-align: center;
}




.shop-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;

    gap: 100px;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 10% 20px 40px;
}

.product1,
.product2 {
    display: flex;
    flex-direction: column;

    flex: 1 1 350px;

    width: 100%;
    max-width: 450px;
    min-height: 500px;

    padding: 10px;

    background-color: #333;
    color: white;

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product1 img,
.product2 img {
    width: 100%;
    height: 250px;

    border-radius: 10px;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: white;
}



@media screen and (max-width: 1024px) {

    header {
        padding: 10px 20px;
    }

    header h1 {
        font-size: 26px;
    }

    button {
        margin-left: 10px;
        font-size: 15px;
        padding: 8px;
    }

    .Welcome {
        font-size: 30px;
    }

    .Mission1 h4 {
        font-size: 28px;
        padding: 30px;
    }

    .shop-container {
        gap: 40px;
        padding-top: 120px;
    }

    .product1,
    .product2 {
        flex-basis: 300px;
        max-width: 400px;
        min-height: 450px;
    }

    .product1 img,
    .product2 img {
        height: 220px;
    }
}




@media screen and (max-width: 768px) {

    header {
        position: absolute;
        flex-wrap: wrap;
        justify-content: center;

        padding: 15px;
        text-align: center;
    }

    header h1 {
        width: 100%;
        margin-bottom: 8px;
        font-size: 24px;
    }

    button {
        margin: 4px;
        padding: 8px 10px;
        font-size: 14px;
    }

    body h2 {
        font-size: 28px;
        padding: 80px 20px 20px;
    }

    body h5 {
        left: 0;
        width: 100%;

        padding: 10px 15px;

        font-size: 14px;
        text-align: center;
    }

    .Welcome,
    .Mission,
    .Services {
        min-height: 100svh;
    }

    .Mission1 h4 {
        min-height: 100svh;

        padding: 80px 25px 25px;

        font-size: 25px;
        line-height: 1.5;
    }

    .shop-button {
        left: 50%;
        bottom: 8%;

        transform: translateX(-50%);

        width: max-content;
        padding: 10px 18px;
    }

    .shop-container {
        flex-direction: column;
        align-items: center;

        gap: 30px;

        padding: 130px 20px 40px;
    }

    .product1,
    .product2 {
        flex: none;

        width: 100%;
        max-width: 500px;
        min-height: 0;
        height: auto;
    }

    .product1 img,
    .product2 img {
        height: 240px;
    }
}


@media screen and (max-width: 480px) {

    header {
        padding: 10px;
    }

    header h1 {
        font-size: 21px;
    }

    button {
        margin: 2px;
        padding: 7px;
        font-size: 13px;
    }

    body h2 {
        font-size: 24px;
        line-height: 1.4;
        padding: 100px 15px 20px;
    }

    body h5 {
        font-size: 12px;
    }

    .Welcome {
        font-size: 24px;
    }

    .Mission1 h4 {
        padding: 100px 18px 25px;

        font-size: 21px;
        line-height: 1.5;
    }

    .shop-button {
        width: calc(100% - 40px);
        max-width: 280px;

        font-size: 14px;
        text-align: center;
    }

    .shop-container {
        gap: 20px;
        padding: 120px 12px 30px;
    }

    .product1,
    .product2 {
        width: 100%;
        max-width: none;

        padding: 10px;
    }

    .product1 img,
    .product2 img {
        height: 200px;
    }

    footer {
        font-size: 13px;
        padding: 12px;
    }
}



@media screen and (max-width: 360px) {

    header h1 {
        font-size: 19px;
    }

    button {
        padding: 6px;
        font-size: 12px;
    }

    body h2 {
        font-size: 21px;
    }

    .Mission1 h4 {
        font-size: 19px;
    }

    .product1 img,
    .product2 img {
        height: 180px;
    }
}