body{
    margin: 0;
    padding: 0;
    border: 0;
    background-color: rgb(226, 222, 210);
    /* background-color: rgb(201, 188, 169); */
    font-size: 12px;
}

.wrapper{
    /* border: 1px solid black; */
    margin: 0;
    padding: 0;
}

/* Header related css */

.header{
    background-image:url("../img/moon_2026_2.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
    padding: 0;
}

.headerContentWrapper{
    width:100%;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid cyan; */
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.headerContentHeader{
    width: 98%;
    text-align: center;
    color: white;
    /* border: 2px dashed red; */
}

.headerContentSubHeader{
    width: 98%;
    text-align: center;
    color: white;
}

.headerButtonsWrapper{
    width: 100%;
    text-align: center;
}

.headerButton{
    width: 100%;
    max-width: 200px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    background-color:rgba(0, 0, 0, 0.5)
}

.headerButton:hover{
    width: 100%;
    max-width: 200px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    background-color:rgba(152, 151, 151, 0.5)
}

/* Body related css */

.main{
    width: 100%;
    /* border: 2px blue dotted; */
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
}

.about-wrapper{
    width: 98%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.button-wrapper{
    /* border: 3px rgb(244, 87, 255) solid; */
    width: 98%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}


.buttonLinkFlexObj{
    /* This one exists to prevent links from breaking flex order */
    width: 100%;
    max-width: 350px;
    padding: 0;
}

.buttonLink{
    padding: 10px;
    /* border: 1px solid red; */
    /* background-color: rgb(135, 95, 69); */
    background-color: rgb(120, 111, 80);
    font-size: 1.3rem;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    color: rgb(236, 232, 226);
}

.buttonLink:hover{
    padding: 10px;
    /* border: 1px solid red; */
    /* background-color: rgb(135, 95, 69); */
    background-color: rgb(172, 167, 146);
    font-size: 1.3rem;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    color: rgb(236, 232, 226);
}


.spacer-250{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 250px;
    /* border: 1px solid black; */
}

.footer{
    width: 100%;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(154, 140, 114);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
}
.footer-content{
    width: 90%;
    max-width: 1200px;
    padding: 10px;
}


/* Common */

.img100{
    width: 100%;
}

.text{
    width: 90%;
    padding: 10px;
    margin: 0;
}

.centered{
    margin-left: auto;
    margin-right: auto;
}

.border{
    border: 1px solid rgb(255, 115, 0);
}

a{
    text-decoration: none;
    color: inherit;
}
a:visited{
    text-decoration: none;
    color: inherit;
}
a:active{
    text-decoration: none;
    color: inherit;
}


/* Fonts and sizes*/

.font-Madi{
    font-family: "Ms Madi", serif;
    font-weight: 400;
    font-style: normal;
}

.font-Mill-Goudy{
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    font-style: italic;
}

.size4{
    font-size: 4rem;
}

.size2-5{
    font-size: 2.5rem;
}

.size1-5{
    font-size: 1.5rem;
}
.size1-2{
    font-size: 1.2rem;
}

.color-white{
    color: white;
}

.color-beige{
    color: rgb(236, 232, 226)
}