body {
    margin: 0;
    padding: 0; 
    color: #000000;
    /* background-color: #9A5C63; */
}

/* NAVIGATION shop */ 
.navbar {
    background: #C8B8A8;             /* from my color theme */
    color: white;
}

.navleft a {
    color: white;
}

/* INFO SECTION */
.infosection {
    position: relative;  /* puts img behind text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 0; 
    background-color: #C8B8A8; 
}

.infoimg {
    width: 700px; 
    height: auto; 
    z-index: 1; /* puts img behind text */
}

.infoimgclass {
    width: 100%;
    height: auto;
    display: block;
    
    border-radius: 50% / 35% 35% 0 0;
    /*clip-path: inset(0 0 0 0 round 50% / 35% 35% 0 0);*/
    /* border-radius: 50% / 0 0 100% 100%; */
}

.overlaytext {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%); 
    top: 13%; /* how high text should appear */
    font-size: 4.4em;
    font-weight: 700;
    color: white; 
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.1;
    z-index: 10; /* puts text over img */
    text-shadow: 2px 2px 3px rgba(197, 191, 191, 0.7); /* shadow */
}

/* DESCRIPTION 1 */
.box1 {
    background-color: #9A5C63;
}

.box1text h1 {
    font-size: 3.5em;
}

.box1img {
    width: 100%;
    height: 400px;
}

/* LOGO TEXT */
.logotextsection {
    background-color: #C8B8A8;
    color: white;
    padding: 40px 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    align-items: center;
}

.infologotext {
    display: inline-block; 
}

.logotextitem {
    font-size: 1.4em;
    font-weight: 800; 
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 5px;
}

/* DESCRIPTION 2 */
.box2img {
    width: 385px;
    height: 460px;
}

#descrp2 {
    font-size: 1.2em;
}

/* FOOTER FOR INFO PAGE */
:root {
    --scroll-color: #C8B8A8; 
    --text-color: #F5F2EE; 
}

.footer {
    background-color: #C8B8A8;
}

.footersection a {
    background-color: #F5F2EE;
    color: #C8B8A8;
}

.footersection a:hover {
    background-color:  #d2cfcc;
}