@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141216;
    font-size: 62.5%;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
    height: 300px;
    background: #35343A;
    border-radius: 10px;
    color: #fff;
    padding: 180px 40px;
}

h1 {
    font-size: 1.5rem;
}

#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

form {
    display: flex;
    gap: 20px;
}

.box-max, .box-min {
    display: flex;
    flex-direction: column;
    justify-content: start;
    font-size: 1rem;
    gap: 5px;
}

#num-min, #num-max {
    height: 30px;
    border: none;
    background: #35343A;
    border-bottom: 1px solid green;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

#btn-gerar {
    width: 100%;
    height: 40px;
    background: green;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    color: #fff;
    outline: none;
    cursor: pointer;
}

#box-result {
    background: #35343A;
    padding: 25px;
    border-radius: 5px;
    border: 2px solid green;
}

#box-result > span{
    font-size: 2rem;
    color: #fff;
}