body{
    width: 100%;
    height:100vh;
    margin: 0;
    padding: 0;
    background: url(question-mark-1872665.jpg) no-repeat;
    background-size: cover;
    font-family: 'Baloo Thambi', cursive;
}
.text{
    
    text-align: center;
    margin-bottom: 119px;
    
}
.text h1 {
    color: #F44336;
    text-shadow: 4px 3px 0px black;
    font-size: 45px;
    letter-spacing: 4px;
    box-sizing: border-box;
}
.images {
    display: flex;
    justify-content: flex-end;
}

.images img {
    height: 50px;
    width: 50px;
    padding-right: 300px;
}

.answer{
    display: flex;
    margin: 30px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#raspuns {
    text-align: center;
    padding-top: 10px;
    height: 100px;
    width: 300px;
    border: 4px solid #1A237E;
    border-radius: 10px;
    font-size: 20px;
    color: #F44336;
    text-shadow: 3px 1px 0px black;
    font-family: 'Roboto Mono', monospace;
  
    
}

textarea {
   background: transparent;
    border-radius: 10px;
    border: 4px solid #1A237E;
    padding-left: 10px;
    padding-top: 20px;
    outline: none;
    font-size: 20px;
    color: #F44336;
    text-shadow: 3px 1px 0px black;
    font-family: 'Roboto Mono', monospace;
   
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    height: 40px;
    width: 250px;
    margin-top: 50px;
    border: 2px solid grey;
    border-radius: 15px 0 15px 0;
    transition: 1s;
    outline: none;
    font-size: 18px;
}

.icons {
    position: absolute;
   
    bottom: -10px;
    width: 100%;
    background: black;
    
}
ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

li {
    list-style: none;

}

li img{
    height: 30px;
    width: 30px;
    margin: 0 33px;
}



button:hover {
    transform: scale(1.1);
    font-size:  20px;
    font-weight: bold;
    background: #8360c3;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #2ebf91, #8360c3);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #2ebf91, #8360c3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    cursor: pointer;
    box-shadow: 0px 0px 9px 2px;
}
















@media screen and (max-width: 1100px){
    .answer{
        flex-direction: column;
    }

    #raspuns {
        margin-top: 70px;
        width: 80%;
        height: 149px;
        font-size: 50px;
    }

    .images img{
        display: none;
    }

    button {
        height: 60px;
        width: 300px;
        margin-top: 50px;
        font-size: 30px;
    }

    textarea {
        margin-top: 15%;   
        width: 90%;
        height: 350px;
        font-size: 50px;  
     }

    ul{
        margin: 30px 0;
    }

    li img{
        height: 50px;
        width: 50px;
        margin: 0 33px;
    }

    .text h1 {
        
        font-size: 100px;
        
    }

    .text {
        margin-top: 100px;
        margin-bottom: 0;
    
    }

    .icons{
        position: static;
        margin-top: 200px;
    }
    body{
        background-repeat: initial;
    } 
    
}