html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #1a1526;
    overflow: hidden;
}

header {
    height: 70px;
    background-color: #1a1526;
    display: flex;
}

#logocontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16px;
}

#buttoncontainer {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-right: 30px;
}

button {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 8px;
    background-color: #ec3750;
    color: white;
    cursor: pointer;
}

main {
    display: flex;
    flex: 1;
    position: relative;
}

#Calc {
    flex: 1;
}

#editor {
    flex: 1;
}