@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');
body
{
    background-image: linear-gradient(to right, #fe8c00, #f83600);
    font-family: 'Cairo', sans-serif;
}

.panel
{
    /* border: 1px solid rgb(0, 0, 0);
    border-radius: 5px; */
    margin-top: 100px;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.titlePanel
{
    text-align: center;
}

#titleLabel
{
    font-size: 45px;
}

.optionsPanel
{
    padding-left: 10px;
    margin-top: 50px;
}

input
{
    width: 50px;
    color: white;
    background: black;
    border: none;
    text-align: center;
}

#okButton
{
    background-color: #232221;
    border: none;
    margin-bottom: 25px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    width: 100px;
    border-radius: 45px;
    font-size: 15px;
    color: white;
}
#okButton:hover
{
    background-color: #af2020;
    transform: translateY(-1px);
}

.mainPanel
{
    background-color: black;
    color:#fe8c00;
    box-shadow: 0px 8px 5px rgba(0,0,0,0.3);
    border-radius: 3px;
    padding-left: 10px;
    padding-top: 10px;
    margin-top: 230px;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
}