* {
    padding: 0;
    margin: 0;
}

html {
    background-color: var(--bg-primmary);
}

body {
    background-color: var(--bg-primmary);
    color: var(--color-primmary);
    font-family: 'Nunito', sans-serif;
}

/* ### ### ### ### ### */

.max_vw {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ### ### ### ### ### */

.container {
    padding: 0 30px;
    margin-top: 60px;
}

/* ### ### ### ### ### */

.new_note {
    display: block;
} 

.created_note {
    display: none;
}

/* ### ### ### ### ### */

.heading {
    font-size: 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    margin-bottom: 40px;
}

/* ### ### ### ### ### */

.qr {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.qr img {
    width: 200px;
    height: 200px;
    border-radius: 7px;
}

/* ### ### ### ### ### */

form {
    margin-bottom: 40px;
    width: 100%;
}

form textarea {
    outline: none;
    border: 0;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: var(--bg-secondary);
    min-width: calc(100% -40px);
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-height: 58px;
    height: calc(160px - 40px);
    max-height: calc(320px - 40px);
    font-family: 'Nunito', sans-serif;
    color: var(--color-primmary);
    padding: 20px;
}

form input[type="text"] {
    outline: none;
    border: 0;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: var(--bg-secondary);
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    height: calc(60px - 40px);
    font-family: 'Nunito', sans-serif;
    color: var(--color-primmary);
    padding: 20px;
    text-align: center;
}

form input[type="submit"] {
    outline: none;
    border: 0;
    border-radius: 15px;
    background-color: var(--highlight);
    width: 100%;
    height: 50px;
    color: var(--color-primmary);
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
}

form input[type="submit"]:hover {
    cursor: pointer;
}

form p.info {
    outline: none;
    border: 0;
    border-radius: 15px;
    width: 100%;
    height: 50px;
    color: var(--warning);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.5px;
    display: flex;
    text-align: center;
    justify-content: center;
    line-height: 50px;
}

form a.btn {
    outline: none;
    border: 0;
    border-radius: 15px;
    background-color: var(--highlight);
    width: 100%;
    height: 50px;
    color: var(--color-primmary);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
    display: flex;
    text-align: center;
    justify-content: center;
    line-height: 50px;
}

form a.btn:hover {
    cursor: pointer;
}

/* ### ### ### ### ### */

.footer {
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: var(--color-secondary);
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
}
