@import url('https://fonts.googleapis.com/css2?family=Montenegrin+Gothic+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

body {
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 650px;
    height: auto;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.form-title {

    color: rgb(255, 255, 255);
    font-size: 40px;
    margin-bottom: 20px;
    align-self: center;
    font-weight: bold;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::placeholder {
    color: rgb(255, 255, 255);
    opacity: 0.6;
    text-align: center;
}

.min,
.max {
    font-size: 20px;
    width: 150px;
    padding: 10px;
    background-color: rgb(49, 49, 49);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 10px;
}

.result {
    color: rgb(111, 169, 35);
    font-size: 30px;
    padding-top: 30px;
    text-align: center;
    align-self: center;
    font-weight: bold;
}

.btn {
    width: 200px;
    padding: 10px;
    background-color: rgb(111, 169, 35);
    border: 1px solid rgb(111, 169, 35);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    margin-top: 40px;
}