:root {
    --bg-color: linear-gradient(to bottom right, rgb(20, 20, 20), rgb(3, 0, 15));
    --card-color: rgb(23, 23, 23);
    --title-color: rgb(214, 211, 230);
    --text-color: rgb(227, 225, 237);
    --border-color: rgba(255, 255, 255, 0.1);
    --button-width: 150px;
    --button-height: 50px;
}

header {
    /* display: flex; */
    text-align: center;
    width: 100%;
    margin: 0px;
    color: var(--title-color)
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-color);
    height: 100vh;
    justify-content: center;
    /* overflow: hidden; */
    padding: 0px;
}

#cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    gap: 8px;
    /* max-width: 926px; */
    width: calc(100% - 20px);
    position: relative;
    text-align: center;
}

.card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    min-height: 260px;
    width: 300px;
    border-radius: 10px;
    position: relative;
}

input {
    padding: 3px;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-color);
    font-size: 1.2rem;
}

.cardContent {
    margin-top: 50px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    font-size: 1,2rem;
}

.button {
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    width: var(--button-width);
    height: var(--button-height);
}


#generatepassword {
    /* position: relative; */
    margin-top: 10px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    font-size: 1,2rem;
}

#passwordsettings {
    margin-top: 10px;
    color: var(--text-color);
}

.generatepasswordset {
    width: 45px;
}

#txtgeneratepassword {
    margin-top: 10px;
}

.charsselect {
    padding: 1em;
}

#btngeneratepassword {
    margin-top: 1.5em;
}

#btnmacaddress {
	margin-top: 30px;
}

#btnusername {
    margin-top: 1em;
}

.carditems {    
    margin: 10px;
}

#cardtitle {
    color: var(--text-color);
    font-style: bold;
}

footer {
    display: block;
    text-align: center;
    text-decoration: none;
}

.linkgithub {
    text-decoration: none;
    color: var(--border-color);
}

.cidrtxt {
	color: var(--title-color);
	text-align: center;
	line-height: 15px;
}

#username {
    margin-top: 0.05em;
}

#ethanolmix {
    color: var(--text-color);
    text-align: center;
}