body {
    background-color: #FFFBE1;
    font-family: 'Poppins', sans-serif;
    width: auto;
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 0.375rem;
    border: none;
    outline: none;
}


nav a {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.625rem 0.875rem;
    background-color: #000000;
    border-radius: 0.375rem;
    border: none;
    outline: none;
    text-decoration: none;
}


#unsubscribe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

#unsubscribe {
    display: flex;
    flex-direction: column;
    background: #3EACF5;
    padding: 20px;
    border-radius: 10px;
    max-width: 85%;
    margin: 50px auto;
}

.title {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.description {
    line-height: 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    color: #ffffff;
}

#unsubscribe form {
    display: flex;
    max-width: 28em;
    margin-top: 1em;
    column-gap: 0.5rem;
}

#unsubscribe form input {
    outline: none;
    line-height: 1.5rem;
    font-size: 0.875rem;
    color: #000000;
    padding: 0.5em;
    background: #D5EAF9;
    border: 1px solid rgba(253, 253, 253, 0.363);
    border-radius: 0.375rem;
    flex: 1 1 auto;
}

#unsubscribe form input::placeholder {
    color: #7d7d7d;
}

#unsubscribe form input:focus {
    border: 1px solid rgb(0, 0, 0);
}

#unsubscribe form button {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.625em 0.875em;
    background-color: #000000;
    border-radius: 0.375rem;
    border: none;
    outline: none;
}

#unsubscribe form button:hover {
    background-color: #535353;
    cursor: pointer;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #57737A;
    height: 35vh;
    width: 100%;
}

#leave a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #57737A;
}

#leave {
    margin: 10px;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15%;
}

.social-media img {
    height: 40px;
    width: 40px;
}

#accrediting {
    font-size: 0.5rem;
}