@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root{
    --searchShaodw: -13px 13px 26px rgba(181, 181, 181, 0.2), 13px -13px 26px rgba(181, 181, 181, 0.2), -13px -13px 26px rgba(255, 255, 255, 0.9), 13px 13px 33px rgba(181, 181, 181, 0.9), inset 1px 1px 2px rgba(255, 255, 255, 0.3), inset -1px -1px 2px rgba(181, 181, 181, 0.5);

}

*{
    font-family: 'Roboto',sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

body{
    text-align:center;
    margin: 0;
    padding: 0;
    position: relative;
    }
    .time-up,.goodWork{
        display: none;
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgb(0 0 0 / 60%);
        color: white;
        font-size: 24px;
        z-index: 13;
        left: 0;
        top: 0;
        /* display: flex; */
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .time-up p,.goodWork article{
        background: #011d3aba;
        padding: 5px 40px;
        border-radius: 4px;
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(-35px);
        animation: moveDown 0.5s .4s ease-in-out forwards;
        margin-top: 2rem;
        line-height: 1.5;
        color: white;
        z-index: 16;
    
        }
    .warning{
        opacity: 0.5;
        transform: translateY(-35px);
        width: 100px;
        height: 100px;
        animation: moveDown 0.5s 0s ease-in-out forwards;
    
    }
    @keyframes moveDown{
        0%{
            opacity: 0.5;
            transform: translateY(-35px);
        }
        100%{
            opacity: 1;
            transform: none;
        }
    }
    h2{
        text-align:center;
        color: #4a4a4a;  
        margin: 3px 0;
        z-index: 3;  
        }
    h1{
        margin-bottom: 3px;
        text-align:center;
        color:blue;
        /* background-color:white; */
        }
    p{
        margin: 10px 0;
    }
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.picture-holder{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    max-width: 600px;
}
.ques{
    background: #0fa1e7;
    box-shadow: var(--searchShaodw);
    /* width: max-content; */
    margin: 15px 5px;
    padding: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.angle-pic{
    width: 260px;
    height: 190px;
    object-fit: cover;
}
.user-text{
    width: max-content;
    /* display: flex; */
    margin: auto;
    border-radius: 30px;
    border: 2px solid grey;
    padding: 4px 10px;
    margin-top: 5px;
    color: black;
}
.single-pic{
    width: max-content;
    height: max-content;
    border: 3px solid #01356a;
    padding-bottom: 7px;
    margin: 6px;
    border-radius: 4px;
    background: white;
    position: relative;
}
.angle{
    flex-grow: 0.5;
    border: none;
    border-right: 2px solid #888585;
}
.red{
    /* border-right: 2px solid #ff0202; */
    border-color: #ff0202;
}
.red::placeholder{
    color:#ff0202;
}

.top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    width: 100%;
    align-items: center;
}
.start,.submit{
    background: #ffffff;
    border: 2px solid #01356a;
    border-radius: 4px;
    padding: 5px 25px;
    font-weight: 500;
    /* margin: 0 10px; */
    height: max-content;
    cursor: pointer;
    
}
.start{
    z-index: 15;
}
.submit{
    background: #15bc39;
    border: 2px solid #058971;
    color: white;
    /* width: 90%; */
    border-radius: 30px;
}
.submit:hover{
    background: #0e8628;
}
.disabled{
    background: #5b9267;

}
.start:hover{
    background: #c4c4c4;
}
.correct, .wrong{
    background: url("../light-tick-svgrepo-com.svg") no-repeat;
    background-position: center;
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 30%;
    width: 40%;
    height: 40%;
    transform: translate(-50%, -50%);
    display: flex;
    place-items: center;
    justify-content: center;
}
.wrong{
background: url("../error-svgrepo-com.svg") no-repeat;
}
.time-left{
    background: #01356a;
    padding: 5px;
    color: white;
    border-radius: 4px;
}