* {
    font-family: sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin: 10vh auto;
}

.mainPart {
    display: grid;
    grid-gap: 0.8rem;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
}

.calculator {
    height: 80%;
    width: 80%;
}

.displayText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.boxItems {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    transition: 0.3s;
}

.boxItemsP {
    margin: 0;
    font-size: 3em;
}

#display {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    width: 99%;
    height: 3rem;
    padding-right: 1%;
    margin: 1rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 2rem;
    text-align: right;
    border: 1px solid transparent;
}

.title {
    margin: 0;
    font-size: 3vh;
}

#interrupt {
    display: none;
}
@media only screen and (min-width: 1000px) {
/* Css for Desktop goes here like sample below*/
    #interrupt {
        display: block;
    }
}