#splash-screen {
    
    min-height: 100vh;
    width: 100vw;

    background-image: url("https://files.catbox.moe/x4aplk.jpg");

    background-position: center;
    background-size: 40vw 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-attachment: fixed;
}

body {
    margin: 0px
}

.peel {
    background-color: rgb(42, 165, 56);
    background-image: url("https://files.catbox.moe/xedq7y.jpg");
    width: 60vw;
    height: 500vh;
    margin: 10vh 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}   

.fruit {
    position: absolute;
    background-color: red;
    background-image: url("https://files.catbox.moe/9v4a5x.jpg");
    background-size: contain;
    background-attachment: fixed;
    width: 55vw;
    height: 490vh;
    border-radius: inherit;
    display: grid;
    align-items: flex-start;
    grid: auto-flow / repeat(auto-fill, 500px);
    justify-content: space-around;
}

.seed {
    background-color: black;
    background-image: url("https://files.catbox.moe/3eqfu8.jpg");
    background-size: cover;
    background-position: center;
    color: aliceblue;
    text-align: center;
    border-radius: 10px;
    margin: 1rem 0px;
}