* {
    font-family: "Philosopher";
    margin: 0px;
    padding: 0px;
    color: black;
}

body {
    background-color: rgb(255, 250, 231);
}

/* Header */
.header-img {
    width: 120px;
    aspect-ratio: 1/1;
}

.menu-img {
    width: 120px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navoptions {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 60px;
}

.navtext {
    color: rgb(255, 250, 231);
    font-size: 2.5rem;
    padding: 0px 32px;

}

header {
    background-color: rgb(48, 10, 0);
    padding: 16px;
}

/* Hero Image */
.hero {
    background-image: url(/images/marble-hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 372px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.title {
    display: block;
    font-size: 5rem;
    background-color: rgba(255, 255, 255, 0.4);
    color: rgb(48, 10, 0);
    padding: 16px 0px;
    text-align: center;
}

.pagetitle {
    display: block;
    font-size: 5rem;
    -webkit-text-stroke: 2px rgb(48, 10, 0);
    color: rgb(255, 250, 231);
    padding: 16px 0px;
    text-align: center;
}

.wholesection {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.aboutsection{
    justify-content: center;
}

.card-img {
    width: 100%;    
}

p {
    color: rgb(48, 10, 0);
    font-size: 1.2rem;
    line-height: 36px;
    padding: 8px 32px;
}



/* Links & Button Links */
a:link {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: rgb(255, 250, 231);
    background-color: transparent;
    text-decoration: none;
}

.cardssections {
    display: flex;
    flex-direction: column;
    width: 90%;

}

/* footer */
.footerlogo {
    object-fit: contain;
    aspect-ratio: 1/1;
    width: 100%;
    padding-top: 32px;
}

.footer {
    background-color: rgb(48, 10, 0);
    padding: 32px;
}

.footertext {
    font-family: "Noto Serif", serif;
    color: rgb(255, 250, 231);
}

.space {
    color: rgb(48, 10, 0);
}

/* Media Queries */

@media(max-width:699px) {
    .navoptions {
        padding: 0px 24px;
    }

    .navtext {
        font-size: 1.5rem;
        padding: 0px 8px;
        display: none;
    }
}

@media(min-width:700px) {

    .navoptions {
        padding: 0px 32px;
    }

    .navtext {
        font-size: 1.8rem;
        padding: 0px 8px;
    }

    .title,
    .pagetitle {
        font-size: 6rem;
    }

    .hero {
        height: 450px;
    }

    .header-img,
    .menu-img {
        width: 160px;
    }
    .menu-img{
        display: none;
    }

    p {
        font-size: 1.5rem;
        line-height: 48px;
    }

}

@media(min-width:1000px) {

    .navoptions {
        padding: 0px 60px;
    }

    .navtext {
        font-size: 2.5rem;
        padding: 0px 32px;

    }

    .title,
    .pagetitle {
        font-size: 7rem;
    }

    .hero {
        height: 550px;
    }

    .header-img,
    .menu-img {
        width: 200px;
    }
    .menu-img{
        display: none;
    }

    p {
        font-size: 1.8rem;
        line-height: 56px;
    }

}