/*
(c) EGLearn - licensed
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/*
    Created on : 17. 5. 2022, 8:01:30
    Author     : egrat
*/



body {
    font-family: 'Barlow', sans-serif;
    height: 90vh !important;
    background-color: lightskyblue;
}
content  {
    width: 100vw;
    height: 100vh;

}
.question {
    border: 2px solid grey;
    border-radius: 15px;
    background-color: white;
    padding: 15px;
}
.cont{
    border: none;
    border-radius: 10px;
}
.a1 {
    background-color: rgba(0, 185, 22, 0.4) !important;
}
.a2 {
    background-color: rgba(237, 211, 16, 0.4) !important;
}
.b1 {
    background-color: rgba(219, 163, 0, 0.4) !important;
}
button {
    font-weight: 700 !important;
}
button:hover {
    transition: transform .9s; /* Animation */
}
/* [1] The container */

/* [2] Transition property for smooth transformation of images */
.hover-zoom {
    transition: transform .2s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.hover-zoom:hover  {
    transform: scale(1.1);
}