footer {
    text-align: center;
    margin-top: 20px;
    background-color: #ffffff38;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.settings-btn,
.notifications-btn,
footer a {
    color: #1e90ff;
    text-decoration: none;
    background: transparent;
    border: none;
    font-weight: 500;
    font-size: 1rem;
}

.settings-btn:hover,
.notifications-btn:hover,
footer a:hover {
    text-decoration: underline;
}

footer > p {
    margin-top: 12px;
}

.settings-btn,
.notifications-btn {
    font-size: 1rem;
    margin: 0.25rem;
}

.settings {
    display: none;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 56px 28px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 360px;
    min-width: 25%;
}

.settings.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .settings {
        min-width: 325px;
    }
}

@media screen and (max-width: 325px) {
    .settings {
        max-width: 100%;
    }
}

.settings .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.settings .info-new_settings {
    font-size: 12px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 24px;
    border-left: 3px solid #4ba7ea;
    border-radius: 9px;
    padding-left: 10px;
}

.settings input {
    width: 100%;
    height: 3rem;
    font-size: 18px;
    color: #1e2740;
    margin-bottom: 24px;
    padding: 8px;
    border: 2px solid #00000018;
    border-radius: 9px;
    background-color: rgba(0, 0, 0, 0);
    transition: border-color .25s ease;
}

.settings input:focus {
    border-color: #0073ec;
}

.settings .submit {
    width: 100%;
    max-width: 180px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    transition: background-color 1s ease;
    background-color: #0366ff;
    color: #fff;
}