body {
    background-image: url("https://yehorscode.github.io/pumice_and_hummus/background_pumice.png");
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
    padding: 40px;
    color: white;
    transition: 0.5s ease-out;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.question {
    font-weight: bold;
    font-size: 1.5rem;
    padding-bottom: 1rem;
    background-color: black;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.answerdiv {
    background-color: #00000083;
    padding: 10px;
}

.answer {
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.4s ease-in-out;
}

.answer:hover {
    cursor: pointer;
    font-size: 2rem;
    background: linear-gradient(to right, white, gray, gray, white, white, gray, white, gray, white);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite alternate;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: 10px solid gray;
    padding:1px 0 1px 10px;
    transition: all 0.2s ease-in-out;
}
.answer:active {
    font-size: 3rem;
    transition: all 0.1s ease-in;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.before_end {
    padding-top: 20px;
}
.lorediv {
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.700);
    padding: 5px;
}
.loretitle {
    font-size: 2rem;
    font-weight: bold;
}
.lorelorediv {
    display: flex;
}