@charset "utf-8";
/* CSS Document
fibonacciStyles.css
08/14/19
updating the styles to integrate into technovice

*/

form img{
    float: right;
    width: 50%;
    margin-top: 20px;
    margin-right: 30px;
}

input[type="number"]{
    width: 50px;
    height: 30px;
    font-size: 16px;
}

div#fiboTable {
    width: 95%;
    height: 400px;
    overflow-x: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
}

div#fiboTable td {
    padding: 5px;
    text-align: right;
}

div#fiboTable tr:nth-child(even) {
    background-color: #FEF5BC;
}

div#fiboTable th {
    background-color: #FF4F2F;
    color: white;
    padding: 5px;
}

div#fiboTable table {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
}

@media (min-width: 800px) {
    div#fiboTable{
        width: 700px;
    }
}


