#HomeLogo {
    display: block;
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#QuizFrog {
    display: block;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    
}

.quizzer {
    margin-top: 0;
}



#result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#result-image {
    width: 400px;
    height: 400px;
    
    border-radius: 4px;
    display: none;
    margin-top: 50px;
}

#result-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

#HeaderQuiz {
    width 100px;
    margin-left: auto;
    margin-right: auto;
    background-color: none;
}

.Question {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 10x;
}

button {
    text-decoration-color: black;
    background-color: #d988ff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transform: scale(1);
    transition: 0.3s ease;
}


button: hover {
  background-color: #c46cff;
    transform: scale(1.01);
    transition: 0.3s ease;

}