body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-image: url('background.gif');
}

.header {
    position: absolute;
    top: 0;
    height: 200px;
    width: 720px;
    min-width: 720px;
    background-image: url('Header.png');
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.header .headertext {
    position: relative;
    max-height: 200px;
    min-height: 200px;
    min-width: 200px;
    filter: drop-shadow(-5px 4px 2px rgba(0,0,0,0.4));
}

/* MAIN CONTAINER */
.cavestainer {
    position: absolute;
    top: 200px;
    width: 100%;
    max-width: 720px;
        min-width: 720px;
    height: 1200px;
    padding: 20px;
    background-color: white;
    box-sizing: border-box;
    z-index: 1;
}

/* ABOUT SECTION */
.cavestainer .aboutEgg {
    position: absolute;
    left: 85px;
    top: -25px;
    transform: scale(0.8);
    width: 174px;
    height: 129px;
    z-index: 3;
}

.cavestainer .aboutContent {
    width: 230px;
    margin: 25px 20px 0;
    padding: 40px 20px;
    border: 2px solid black;
    background-color: #ffe6f5;
    font-family: MinionPro-Regular, serif;
    font-size: 12pt;
    line-height: 13pt;
    color: #000;
    overflow: auto;
}

/* BULLETIN SECTION */
.cavestainer .bulletinegg {
    position: absolute;
    left: 68px;
    top: 550px;
    transform: scale(0.8);
    width: 174px;
    height: 129px;
    z-index: 4;
}

.cavestainer .bulletinContent {
    width: 230px;
    margin: 0 20px 20px;
    padding: 40px 20px 15px;
    border: 2px solid black;
    background-color: #ffe6f5;
    font-family: MinionPro-Regular, serif;
    font-size: 12pt;
    line-height: 13pt;
    color: #000;
    overflow: auto;
}

/* MENU */
.cavestainer .menu {
    float: right;
    margin-top: -700px;
    margin-right: 20px;
    margin-left: 10px;
    width: 40%;
    height: 200px;
}

.cavestainer .menu .contact,
.cavestainer .menu .read,
.cavestainer .menu .faq {
    position: relative;
    transform: scale(0.7);
}

.cavestainer .menu .contact {
    left: -25%;
    top: -100px;
    z-index: 3;
}
.cavestainer .menu .read {
    left: 0;
    top: -230px;
    z-index: 4;
}
.cavestainer .menu .faq {
    left: 25%;
    top: -360px;
    z-index: 5;
}

/* HOVER EFFECT */
.cavestainer .menu .contact:hover,
.cavestainer .menu .read:hover,
.cavestainer .menu .faq:hover {
    filter: hue-rotate(60deg) brightness(2);
}

/* FEATURE BOX */
.cavestainer .feat {
    float: right;
    display: flex;
justify-content: center;
    margin-top: -450px;
    margin-right: 20px;
    margin-left: 20px;
    width: 45%;
    height: 400px;
    background-image: url(background.gif);
    border: 2px solid black;
    align-items: center;

}
.cavestainer .feat .potd {
  width: 80%;
}
.cavestainer .feat .featText {
width: 10%;
  background-color: rgb(255, 255, 255);
  position: absolute;
    bottom: 1;
}