* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    background-color: #D96C06;
    margin-top: 50px;
    font-size: large;
}

.calculator{
    display: flex;
    justify-content: space-evenly;
    width: fit-content;
    height: 30px;

}

#firstNumber{
    width: 20%;
    font-size: 14pt;
}

#secondNumber{
    width: 20%;
    font-size: 14pt; 
}

#operator{
    width: fit-content;
    font-size: 14pt;
}

#submit {
    font-size: 14pt;
}
.answer-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}