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

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


a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.733);
}


.link-effect {
    transition: ease .1s;
}

.link-effect:hover {
    transform: scale(1.1);
}


input,
select {
    border: none;
    outline: none;
}

html {
    background-color: rgba(27, 27, 27, 0.13);
    background-size: cover;
    overflow: hidden;

}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;

}


header {
    display: inline-block;
    padding-bottom: 20px;
    color: rgba(15, 15, 15, 0.712);
}

section {
    height: auto;
    width: 600px;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.658);
    border-radius: 8px;
    border: solid 1px rgba(26, 25, 27, 0.212);
    padding: 30px;
    box-shadow: 10px 10px rgba(97, 92, 100, 0.219);
}


select {
    width: 210px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.226);
    font-size: 10pt;

}

.flex {
    display: flex;
    flex-direction: column;
}

#btn {
    width: 80px;
    height: 30px;
    border-radius: 10px;
    border: solid 1px rgba(74, 69, 77, 0.123);
    background-color: rgba(0, 0, 0, 0.829);
    color: white;
    font-weight: 500;
    cursor: pointer;
    margin-left: 6px;
}

#fim,
#remover,
#reset {
    margin-right: 5px;
    margin-top: 20px;
    width: 80px;
    height: 30px;
    border-radius: 10px;
    border: solid 1px rgba(74, 69, 77, 0.123);
    color: white;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.829);
    cursor: pointer;
}

#fim,
#remover,
#reset,
#btn {
    transition: ease 0.1s;
}

#fim:hover,
#remover:hover,
#reset:hover,
#btn:hover {
    transform: scale(1.1);
}

#numero {
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.226);
    font-size: 12pt;
    font-weight: 500;
}

#res {
    display: block;
}

section>div {
    margin: 15px;
}

footer {
    padding: 20px;
    font-size: 18pt;
    color: rgb(17, 16, 16);
}