
h1 {
    background-color: dimgrey;
    padding-left: 10px;
}
body {
    margin: 0;
    padding: 0;
    background-image: url("../images/steel.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.shaped {
  background-color: gray;
}

.centered-block {
    max-width: 500px;
    margin: auto;
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-style: solid;
    border-width: 15px;
}
input, button {
    font-family: inherit;
    border-style: solid;
    border-width: 2px;
    border-color: black;
}


.icon {
    height: 50px;
    width: 50px;
}

.row {
    height: 130px;
    display: flex;
   // background-color: darkgrey;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

    /* Add padding BETWEEN each column (if you want) */
    .row,
    .row > .column {
        padding: 20px;
    }

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 100px;
    padding: 50px;
    align-items: center;
    justify-content: center;
    background-color: darkgrey;
    border-radius: 25px;
    text-align: center;
}
.large-button{
text-align:center;
}

    .large-button > button {
        margin: auto;
        padding-left: 25px;
        padding-right: 25px;
        height: 50px;
        font-size: 30px;
        border-style: solid;
        border-width: 5px;
        border-color: black;
    }