* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


body {
    background: #1C1C1C;
}

.main-container {
    background: #1F2937;
    margin: 0 20px;
}

.main-container .main-wrapper {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.main-generator {
    border-bottom: 2px solid #2F3E53;
    padding: 35px 0;
}

.main-container .main-wrapper .title {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 40px;
    max-width: 355px;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.main-container .main-wrapper .title .spotlight {
    color: #10B981;
}

.main-container .main-wrapper .text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #D5D4D8;
    margin-bottom: 51px;
}

.main-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 17px 9px 15px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background: #10B981;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    color: #FFFFFF;
    cursor: pointer;
}

.main-button:hover {
    background: #10b981b7;
}

.passwords-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.pass {
    width: 211px;
    height: 39px;
    background: #273549;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #55F991;
    margin: 35px 0;
}

.pass:hover {
    background: #27354992;
    cursor: text;
}