body,
html {
    overflow: auto;
    max-width: 100%;
    overflow-x: hidden;
    cursor: url(Images/fork.png), auto;
    background-color: white;
}

.Mini-Titles {
    display: flex;
    justify-content: space-between;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    background-color: white;
    width: 100vw;
}

.mini-titles-container {
    display: flex;
    justify-content: space-between;
    width: 500px;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 5px;
}

a {
    text-decoration: none;
    color: black;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    place-items: center;

}

.coverimage {
    background-image: url(Images/plate.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100%;
    width: 200vw;
    height: 200vh;
    margin-top: -8em;
    position: relative;
}

img {
    filter: grayscale(0%);
    transition: 0.5s;
    cursor: url(Images/fork.png), auto;
}

img:hover {
    filter: grayscale(100%);
}

#first {
    max-width: 100%;
    width: 15%;
    position: absolute;
    top: 25%;
    left: 25%;
    transform: rotate(50deg);
}

#second {
    max-width: 100%;
    width: 10%;
    position: absolute;
    bottom: 35%;
    left: 25%;
    transform: rotate(-40deg);
}

#third {
    max-width: 100%;
    width: 20%;
    position: absolute;
    top: 35%;
    right: 45%;
    transform: rotate(30deg);
}

#fourth {
    max-width: 100%;
    width: 10%;
    position: absolute;
    height: auto;
    top: 25%;
    left: 40%;
    transform: rotate(60deg);
}

#fifth {
    max-width: 100%;
    height: auto;
    width: 10%;
    position: absolute;
    top: 45%;
    left: 60%;
    transform: rotate(-25deg);
}

#sixth {
    max-width: 100%;
    height: auto;
    width: 10%;
    position: absolute;
    top: 32%;
    left: 58%;
    transform: rotate(230deg);
}

#seventh {
    max-width: 100%;
    height: auto;
    width: 10%;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: rotate(-50deg);
}

#eight {
    max-width: 100%;
    height: auto;
    width: 12%;
    position: absolute;
    top: 60%;
    right: 38%;
    transform: rotate(45deg);
}

#nine {
    max-width: 100%;
    height: auto;
    width: 5%;
    position: absolute;
    top: 42%;
    right: 25%;
    transform: rotate(-130deg)
}

#ten {
    max-width: 100%;
    height: auto;
    width: 5%;
    position: absolute;
    top: 25%;
    left: 35%;
    transform: rotate(-125deg)
}

#eleven {
    max-width: 100%;
    height: auto;
    width: 7%;
    position: absolute;
    top: 70%;
    left: 40%;
    transform: rotate(-125deg)
}

.boxcontainer {
    background-color: whitesmoke;
}


footer {
    padding: 20px;
    /* Adds padding inside the footer */
    text-align: center;
    /* Centers all text inside the footer */
    font-family: Arial, Helvetica, sans-serif;
    /* Sets a clean font */
    font-size: 1rem;
    /* Sets a default font size */
}

/* Targets all <p> elements inside the footer */
footer p {
    color: #482900;
    margin: 10px 0;
    /* Adds vertical spacing between paragraphs */
    line-height: 1.6;
}

/* Targets specific styles for the second <p> */
footer p:last-of-type {
    font-weight: bold;
    /* Makes the last paragraph bold */
    color: #555;
    /* Slightly lighter text color */
}