/* @import url();

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container{
    height: 100vh;
    width: 100%;
    background-color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kalkulator {
    background: beige;
    padding: 26px;
    border-radius: 20px;
}

h1 {
    text-align: center;
    color: #fff;
}

input {
    width: 330px;
    padding: 25px;
    margin: 10px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 25px;
    text-align: center;
    color: #fff;
}

input::placeholder{
    color: white;
}

button {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #303136;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin: 10pw;
    cursor: pointer;
}

.hasil {
    width: 140px;
    color: #fff;
    background: orange;
    font-weight: 700;
}

.size {
    color: white;
    background: orange;
    font-weight: 400;
}

.operator {
    color: white;
    background: blue;
} */



@import url('https://fonts.googleapis.com');

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

.container {
    height: 100vh;
    width: 100%;
    background: #303136;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kalkulator {
    background: #171717;
    padding: 26px;
    border-radius: 20px;
}

h1 {
    text-align: center;
    color: #fff;
}

input {
    width: 330px;
    padding: 25px;
    margin: 10px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 45px;
    text-align: right;
    color: #fff;
}

input::placeholder {
    color: #fff;
}

button {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #303136;
    font-size: 21px;
    font-weight: 600;
    color: white;
    margin: 10px;
    cursor: pointer;
}

.hasil {
    width: 144px;
    color: white;
    background: orange;
    font-weight: 700;
}

.main {
    color: white;
    background: orange;
    font-weight: 400;
}

.operator {
    color: white;
    background: blueviolet;
}