body {
    background-color: rgb(5, 5, 5);
    background-image: linear-gradient(to bottom, #000, #000, #0d070f);
    background-attachment: fixed;
    color: #b4c9bb;
    font-family: ms gothic;
    overflow-x: initial;
}
@font-face {
        font-family: type;
        src: url(Calculator.ttf)
}
h1 {
    font-family: type;
}
.box-1 {
    margin: 30px auto auto;
    width: 900px;
    height: 1000px;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 200px ;
    border: 2px transparent;
}
.header-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
}
#title {
    text-align: center;
    justify-content: center;
    margin: 0px auto auto;
}
.pics-1 {
    grid-column: 1 / 2;
    grid-row-start: 2;
    padding: 20px;
}
.text-1 {
    grid-column: 2 / 3;
    grid-row-start: 2;
    padding: 20px;
}
button {
    background-color: black;
    color:  #b4c9bb;
    border: 1px solid #b4c9bb;
    font-family: type;
}
img {
    margin: 5px;
}