@import url('https://fonts.googleapis.com/css2?family=Oxygen&display=swap');
html, body {
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #1a2755;
    font-family: 'Oxygen', sans-serif;
}
#passwort-generate {
    width: 40%;
    margin: auto;
    text-align: center;
    background-color: white;
}
#passwort-generate .button {
    display: flex;
    justify-content: center;
    padding: 20px 0; 
}
#button {
    font-family: sans-serif;
    font-size: 15px;
    border: 2px solid #1a2755;
    width: 155px;
    height: 50px;
    text-align: center;
    background-color: #1a2755;
    display: flex;
    color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 15px;
}
#navbar {
	transition: 0.6s;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 5;
}
ul.active{
	background-color: black;
}
.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
}
input {
    padding: 10px 15px;
    user-select: none;
    border-radius: 6px;
    border: none;
    border: 2px solid #8d0cf7;
    outline: none;
    font-size: 22px;
    text-align: center;
    }
   
   input::placeholder{
     font-size: 23px;
    } 
.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
} 
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}
#navbar span {
	display: block;
	color: white!important;
	text-align: center;
	padding: 8px 14px;
	text-decoration: none;
	font-size: 40px;
	cursor: pointer;
}
@media only screen and (max-width: 1280px) {
    #passwort-generate {
        width: 60%;
    }
}

@media only screen and (max-width: 1000px) {
    #passwort-generate {
        width: auto;
    }
    input {
        margin: 0 25px;
        padding: 10px 0;
    }
}