@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&family=Montserrat:wght@100;200;300;400&family=Noto+Sans+Mono:wght@100;200;300;500&family=Nunito:wght@200;600;700&family=Open+Sans:wght@300&family=Roboto:wght@300;400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Mono', sans-serif;
}

h1{
    margin: 20px auto;
    color: #ccc;
    font-weight: 200;
}

body{
    height: 100vh;
    width: 100vw;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#display-password{
    padding: 10px;
    text-align: start;
    font-size: large;
    font-weight: 200;
    border-radius: 10px;
    box-shadow: 10px 10px 10px #000000;
}

#error-info{
    color: red;
    font-weight: 300;
    background-color: #ccc;
    margin: auto;
}

.generate-container{
    display: flex;
    justify-content: space-between;
}

.generate-container * {
   width: 48%;
   padding: 5px;
   font-size: 16px;
}
button{
    background-color: #555;
    border:none;
    border-radius: 10px;
    box-shadow: 10px 10px 10px #000000;
    font-weight: 200;
    color: #ccc;
    transition: ease 0.3s;
}

button:hover{
    background-color:#ccc;
    color: #555;
}
span{
    color:#d1d1d1;
    font-family: 'Noto Sans Mono', sans-serif;
    font-weight: 200;
    margin-top: 5rem;
}
