body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #333;
    background-color: #fafafc;
}
h2 {
    font-size: 11pt;
}
.container1 {
    width: 100%;
    max-width: 1080px;
	display: flex;
    margin: 0 auto;
	justify-content: space-between;
}
.container {
    width: 100%;
    max-width: 1080px;
    margin: 80px auto;
	margin-bottom: 50px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    padding: 5px 0px;
	background: #fafafc;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav, .header nav ul {
    display: flex;
    padding: 0;
    margin: 0 0 0 10px;
    list-style-type: none;
    align-items: center;
}

.header nav ul li {
    margin-right: 10px;
    padding: 5px;
}

.header nav ul li a {
    text-decoration: none;
    color: #333;
}

.header nav ul li a:hover {
    color: #4F4F4F;
}

.form-content {
    margin-bottom: 30px;
}

.form-field {
    margin-bottom: 10px;
}

.form-field label {
    display: block;
}

#site-tag, #master-key, #password-length {
    width: 280px;   
    padding: 3px;
    margin: 2px 0;
}

#password-length {
    width: unset;
}

#generateButton {
    color: #000000;
    border: 1px solid ;
    background-color: transparent;
    padding: 5px 5px;
    cursor: pointer;
    margin-right: 10px; 
}

#generateButton:hover {
    background-color: #030303;
    color: #fff;
}

.output {
    width: 98%;
    padding: 5px;
    margin-top: 15px;
    background-color: #fafafc;
    border: 1.6px solid #cbcbcb;
}
.description p {
    color:#525252;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(0,0,0,0.25);
	width: 1080px;
    margin-left: auto;
    margin-right: auto;

}

.footer-text-right {
    margin-left: auto;
}

.footer-content {
    display: flex;
    align-items: center;
	justify-content: flex-start; 
}

.footer-links {
    list-style-type: none;
    display: flex;
    margin-left: 20px;
    padding: 0;
}

.footer-links li {
    margin-right: 10px;
}

.footer-links li a {
    text-decoration: none;
    color: #333;
}

.footer-links li a:hover {
    text-decoration: underline;
}
@media screen and (min-width: 1001px) and (max-width: 1080px) {
    .footer {
        width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    .container1 {
        flex-direction: column;
    }
.container {
    width: 100%;
    padding-top: 4rem;
	margin-bottom: 50px;
}
    .container1 h1 {
        text-align: center;
    }
    .header nav {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .header nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #site-tag, #master-key {
        width: 99%;
    }
	.form-content {
    padding-top: 1rem;
}
   .footer {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer-content, .footer-text-right, .footer-links {
        width: 100%;
        display: block;
        margin: 5px 0;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        flex-wrap: nowrap;
    }

    .footer-links li {
        margin: 0 5px;
    }
}
