 @import url('https://fonts.googleapis.com/css2?family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+PE:wght@100..400&display=swap');
 *{
    margin: 0;
    padding: 0;
 }
 body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    background-image: linear-gradient(90deg, rgba(0,185,25,1) 0%, rgba(16,108,99,1) 48%, rgba(6,25,105,1) 100%);
    text-align: center;
}
#output {
    margin-top: 20px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
            margin-top: 10px;
            padding: 10px 20px;
            font-size: 16px;
            background-color: black;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            margin-bottom: 30px;
}
button:hover {
            background-color: whitesmoke;
            color: black;
            transition: 0.3s;
            box-shadow: 0px 0px 10px black;
        }
.answer{
    margin-top:30px ;
}
.check{
    text-align: center;
    font-size: 20px;
}
.text{
    text-align: left;
}
.hell{
    background-color: black;
    color: white;
    border-radius: 30px;
    box-shadow: 0 5px 10px gray;
    padding: 20px;
    position: fixed;
    bottom: 50px;
    left: 90%;
    z-index: 100;
    text-align: center;
}
.main{
    max-width: 700px;
    width: 100%;
    background-color: whitesmoke;
    color: black;
    margin: 40px;
    padding: 10px;
    border-radius: 15px; 
}
.in{
    text-decoration: underline;
     padding: 10px;
    font-size: 16px;
    border: 4px solid black;
    max-width: 675px;
    color: black;
}