* {
    cursor: url('../img/catcursor.png') 43.5 29, auto;
}

.item a:hover, button:hover {
    cursor: url('../img/catcursor.png') 43.5 29, auto;
}

#body-text-bg {
    position: relative;
    background-image: url('../img/are-ya-winning-son3.jpg');
    background-color: wheat;
    background-blend-mode: multiply;  
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    border-radius: 20px;
}

#body-text-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/are-ya-winning-son2.jpg');
    background-color: rgb(123, 110, 85);
    background-blend-mode: multiply;    
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    border-radius: 20px;

    filter: blur(5px);
    transform: scale(1.1);

    z-index: 0;
}

#body-text-bg > * {
    position: relative;
    z-index: 1;
}

#body-title {
    margin-top: 5rem;
    text-align: center;
    font-size: 5rem;
    margin: 1rem 3rem;
}

#body-text {
    margin: 1rem 3rem 5rem 3rem;
    border: 3px solid white;
    border-radius: 20px;
    font-size: 2rem;
}

#welcome-title, #welcome-msg, #help-me, #disclaimer {
    padding: 1%;
    margin: 1%;
}

#welcome-title, #welcome-msg, #help-me {
    text-shadow: 0 0 6px black;
    color: white;
}

#disclaimer, #disclaimer a {
    text-shadow: 0 0 6px black;
    color: red;
    text-transform: uppercase;
}

#disclaimer a:hover {
    color: rgb(255, 150, 150);
}