a {
    color: #fff;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #5f050f;
    color: #fff;
    min-height: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    display:flex;
    flex-direction: column;

    header {
        padding:12px 0;
    }

    main {
        flex-grow: 1;
        flex-basis: auto;

        .container {
        }

    }

    footer {
        padding:12px 0;
    }
}




.slider_group {
    display: flex;
    align-items: center;
    column-gap: 8px;

    label {
        flex: 0 1 15%;
    }

    input {
        flex: 1 1 auto;
    }

    output {
        flex: 0 1 15%;
    }
}

.box {
    border-bottom: solid 1px #ffffff44;
    margin: 8px 0;
    display: flex;
    column-gap: 8px;

    .name {
        font-weight: bold;
    }

    .result {
        margin-left: auto;
    }
}

.circle {
    display: flex;
    border: solid 1px #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

#oven_listing {
    h2 {
        font-weight: bold;
    }

}


ul.listing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px;
    list-style: none;
    padding: 0;
    margin: 0;

    &>li {}
}

.form_button {
    background-color: #fff;
    color: #5f050f;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 64px;
    font-weight: bold;
    font-size: 1.2rem;
}


.my-3 {
    margin-top:16px;
    margin-bottom:16px;
}