@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

html,body{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    background-color: #ccc;
}

#start-btn , #reset-btn{
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: #1183ca;
    cursor:pointer;
}

#camera{
    width: 500px;
    height: 400px;
    border: 1px ridge black;
}

img{
    width: 40%;
    height: 50%;
    display: inline;
    border: 7px solid #ccc;
    box-shadow: 2px 2px 10px;
    margin-right: 10px;
    transition: transform 250ms;
}

img:hover{
    border-radius: 60px;
    transform: translateY(-10px);
}

footer{
    bottom: 0;
    right: 0;
    text-align: center;
    position: fixed;
    color: black;
    background-color: #DDDDDD;
    width: 100%;
    height: 40px;
    line-height: 3px;
}

select{
    margin-bottom: 5px;
    margin-top: 0;
    width: 60px;
    font-size: 17px;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

textarea{
    border: 2px solid black;
    border-radius: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    resize: none;
    font-size: 15px;
    padding: 5px;
}

@media screen and (max-width: 768px){
    #result1, #result2, #result3{
        width: 75%;
        text-align: center;
    }
    #result1{
        margin-bottom: 20px;
    }
}
