body {
    background-color: pink;
    background-image: url("https://phantasmablahh.neocities.org/Decor/Backgrounds/BB15.png");
    background-size: 100%;
    background-position: top;
    font-size: 18px;
    margin-left: auto;
    height: auto;
    width: 100%;
}

.main p {
    width: 50%;
    margin: auto;
    padding-right: 90px;
    padding-top: 15px;
}
.main {
    background-color: paleturquoise;
    height: 800px;
    width: 550px;
    margin: auto;
    border: 10px blue groove;
    border-top-right-radius: 100px;
    border-top-left-radius: 80px;
    display: block;
    font-family: "Luckiest Guy";
    font-size: 25px;
    color: navy;
}

.innerarticle {
    background-color: yellow;
    width: 440px;
    height: 400px;
    margin-top: 60px;
    margin-left: 40px;
    color: salmon;
    border: dashed 4px;
    border-color: lightseagreen;
    border-radius: 50px;
    z-index: 99;
    padding-right: 20px;
    padding-bottom: 20px;
}

.innerarticle h1 {
    font-size: 30px;
    text-shadow: -1px 3px black;
    margin: 0;
    margin-left: 0;
}
.innerarticle p {
    font-size: 18px;
    width: 100%;
    padding: 10px;
    margin-left: 0;
    font-family: "Times New Roman", Times, serif;
    color: black;
}

.main2 {
    background-color: paleturquoise;
    height: 200px;
    width: 200px;
    border-top: 10px blue groove;
    border-right: 10px blue groove;
    border-radius: 100px;
    display: block;
    margin-left: 500px;
    margin-top: -250px;
}

.navbar {
    height: 50px;
    width: auto;
    margin-left: auto;
    background-position: center;
    display: block;
    margin: auto;
}

.navbar ul {
    display: inline-block;
    padding-left: 40px;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

.imgtxt {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    position: relative;
}
.imgtxt span {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    font-size: 1.8rem;
    color: #fff;
    filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black)
        drop-shadow(-1px -1px 0 black);
}
.imgtxt:hover span,
.imgtxt:focus span {
    opacity: 1;
}
.imgtxt:hover img,
.imgtxt:focus img {
    /* add hover effects like transform or filter to your images here! */
}
