* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(27, 27, 27);
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#month, #year {
    width: 400px;
    height: 45px;
    margin-top: 10px;
    padding: 10px;
    font-size: 17px;
    border: 1px solid rgba(149, 149, 149, 0.772);
    border-radius: 8px;
    outline: none;
}

button {
    margin-top: 20px;
    width: 400px;
    height: 45px;
    padding: 10px;
    font-size: 17px;
    border-radius: 8px;
    border: none;
    background-color: brown;
    color: bisque;
    transition: 0.1s;
    cursor: pointer;
    &:hover {
        background-color: rgb(194, 61, 61)
        
    }
}