* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #15142b;
    background-image: linear-gradient(180deg, #2103e0, #15142b);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

main {
    position: relative;
    margin: auto;
    padding: 15px;
    border: 3px solid #000;
    margin-top: 15px;
}

#tipo-div,
#tamanho,
#areabordado {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    width: 400px;

    input,
    select {
        height: 28px;
        font-weight: bold;
    }

    label {
        width: fit-content;
        background-color: #15142b;
        padding: 2px;
        color: aliceblue;
        margin-top: 10px;
        margin-bottom: 3px;
    }
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    flex-direction: column;

    #resultado {
        

        h2{
            background-color: aliceblue;
            color: #000;
            font-size: 20px;
            padding: 10px;
            text-align: center;
            width: fit-content;
            position: relative;
            margin: 0 auto;
            margin-bottom: 10px;
        }

        table {
            border-collapse: collapse;
            width: 100%;
            text-align: center;

            tr {
                height: 30px;

                td {
                    padding: 10px;
                    font-weight: bold;
                    text-align: center;
                }
            }
        }
    }
}
