:root {
    --maincolor: #00ffff;
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(0, 0%, 3%);
    color: white;
}

button {
    border-radius: 25px;
    background-color: black;
    color: var(--maincolor);
    border-color: var(--maincolor);
    padding: 1.5% 5%;
}


/* Notify */

#notify_background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;

    pointer-events: none;
}

.notify {
    margin-top: 5%;
    /* width: 90%; */

    min-width: 40%;
    max-width: 90%;

    border: 2.5px solid var(--maincolor);
    border-radius: 25px;
    background-color: hsl(0, 0%, 10%);

    padding: 1%;
    padding-left: 2%;
    padding-right: 2%;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    display: none;
}

.notify-info {
    border-color: var(--maincolor);
    box-shadow: 0 0 8px 2px var(--maincolor);
}

.notify-warning {
    border-color: orange;
    box-shadow: 0 0 8px 2px orange;
}

.notify-error {
    border-color: red;
    box-shadow: 0 0 8px 2px red;
}

.notify-success {
    border-color: rgb(0, 255, 0);
    box-shadow: 0 0 8px 2px rgb(0, 255, 0);
}

.notify_content,
.notify_title {
    width: 100%;
    text-align: center;
}

.notify_title {
    margin-top: 0%;
    margin-bottom: 0%;
}

.notify_content {
    margin-top: 5%;
    margin-bottom: 3%;
}