html, body {
    margin: 0;
    padding: 0;
}

.body {
    background: #2d2d2d;
    font-family: "Staatliches", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

p {
    margin: 0;
}

.content {
    width: 1140px;
    margin: 0 auto;
}

@media only screen and (max-width: 1140px) {
    .content {
        width: 100%;
        margin: 0 auto;
    }

    #resultMessage {
        flex-direction: column;
    }

}

.header {
    width: 80%;
    margin: 0 auto;
}

.inputs {
    flex: 1;
}

.part {
    width: 100%;
    background: #1d1d1d;
}

.title {
    padding: 10px 20px;
    font-size: 25px;
    background: #ffea00;
}
.title i {
    font-size: 15px;
}

.input {
    display: flex;
    padding: 20px;
    color: #ffea00;
    font-size: 20px;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.input > input {
    flex-grow: 1;
    padding: 10px;
}

.checkbox {
    align-self: center;
    display: flex;
}

.checkbox label {
    padding-right: 10px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.result {
    text-align: center;
    font-size: 18px;
    background:#ffc800;
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 0;
    border-width: 0 0 5px 0;
    border-color: #000;
    border-style: solid;
}

#resultMessage {
    position: sticky;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #ffc800;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.details {
    font-size: 20px;
    background: #1d1d1d;
    color: #ffc800;
    width: 100%;
}

.detailsInfo {
    padding: 20px;
}