@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@1,300&display=swap');
* {
    margin: 0;
    padding: 0;
}

nav{
    font-family: "Noto-sans", sans-serif;
    font-weight: 900;
    display: flex;
    font-size: 20px;
    background-color: rgb(224, 209, 245);
    padding: 23px;
}

nav li a{
    text-decoration: none;
    color: rgb(2, 3, 18);
}

nav li a:hover{
    text-decoration: none;
    color: rgb(103, 101, 235);
    transition: all;
    transition-duration: 500ms;
}

div.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 23px;
}
nav ul li{
    list-style: none;
    margin: 0 23px;
}
nav ul{
    display: flex;
}

.container {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    max-width: 80vw;
    margin: auto;
}

.container h1, h2{
    margin: 23px;
}

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

.container form label{
    font-size: 25px;
}

.container form input[type='number'], select{
    font-size: 25px;
    width: 23vw;
    margin-bottom: 23px ;

}

.btn{
    width: 144px;
    padding: 5px 8px;
    font-size: 23px;
    background: #e0d0f5;
    color: black;
    border-radius: 13px;
    cursor: pointer;
}
.output{
    display: none;
}

.output table{
    width: 58vw;
    text-align: center;
    border: 2px solid black;
    font-size: 20px;
}


footer{
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
