.page-header {
    position: relative;
    z-index: 2;
    background-color: var(--black);
    align-content: center;
    color: var(--white);
    width: 100%;
    font-family: "Lexend";
    height: 70px;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.page-footer {
    position: relative;
    bottom: 0px;
    color: var(--light-grey);
    margin: 0px 0px 10px 10px;
    font-family: "Lexend";
    font-size: 12px;
    font-weight: 300;
}

a {
    color: var(--light-grey);
    font-family: "Lexend";
    font-size: 12px;
    font-weight: 300;
}

.page-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
}

/* ctrlcmd+f __alerts__ */

.alert-body {
    position: fixed;
    opacity: 0;
    top: 15px;
    top: 15px;
    left: 20%;
    right: 20%;
    z-index: 3;
    background-color: var(--alert_main);
    border: 2px solid var(--alert_border);
    border-radius: 16px;
    max-width: fit-content;
    margin: auto;
    padding: 15px;
    margin-top: 30px;
    text-align: center;
    color: black;
    font-family: var(--ff-sans);
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
}

.alert-popup {
    animation-name: fade-in-out;
    animation-duration: 4s;
}

@keyframes fade-in-out {
    0% {
        opacity: 0%;
    }

    5% {
        opacity: 100%;
    }

    70% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
    }
}

.title {
    font-weight: var(--fw-thin);
    margin-bottom: 20px;
    text-align: left;
}

.message-body{
    background-color: var(--white);
    resize: none;
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    padding: 1.25rem;
    color: black;
    font-family: var(--ff-sans);
    font-size: var(--fs-ssmall);
    font-weight: var(--fw-regular);
    outline: 10px solid var(--superlight-grey);
    outline-offset: -10px;
    margin-bottom: 2rem;
}

.message-body::placeholder{
    color: black;
    font-family: var(--ff-sans);
    font-size: var(--fs-ssmall);
    font-weight: var(--fw-regular);
    opacity: 60%;
}

textarea:focus{
    outline: 10px solid var(--superlight-grey);
    outline-offset: -10px;
    box-shadow: 0 0 10px var(--black)
}

.red-outline {
    outline: 3px solid var(--red);
    outline-offset: -13px;
}

.red-outline::placeholder{
    color: var(--red);
}

button {
    color: var(--white);
    background-color: var(--black);
    padding: 10px 20px;
    border-radius: 1rem;
    width: 100%;
    max-width: 250px;
    border: 3px solid #0000;

    font-family: var(--ff-sans);
    font-weight: var(--ff-medium);
    font-size: var(--fs-small);
}

button:hover{
    cursor: pointer;
    border: 3px solid #0000;
    border-radius: 1rem;
    background:
    linear-gradient(var(--black), var(--black)) padding-box,
    conic-gradient(var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg) border-box;
}

span {
    font-size: 12px;
}

.button-section{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.submit {
    display: block;
}

.new {
    display: none;
    max-width: fit-content
}