/* style.css */
body {
    margin: 0;
    max-width: 1000px;
    font-size: calc(20px + .5vw);
    overflow: hidden;
    background-color: #181813;
    color: #ffffffee;
    font-family: "Lora", serif;
    font-weight: 400;
    font-style: normal;
    user-select: none;
}

.form-title-container {
    z-index: 9999;
    width: max-content;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    outline: #ffffffee;
    outline-style: dashed;
    outline-width: 1px;
    outline-offset: 50px;
}

hr {
    border: 1px dashed #ffffffee;
}

.contact-container {
    visibility: hidden;
    opacity: 0;
}

.form-content {
    margin: 0;
    line-height: 1.5;
}

.pending p {
    font-size: small;
    margin: 0;
}

.orange {
    color: #F6995C;
}

.purple {
    color: #B08BBB;
}

.red {
    color: #ff0000d4;
}

.green {
    color: #5C8984;
}

.blue {
    color: #8EACCD;
}

button, .go-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    color: none;
}

.emoji {
    vertical-align: middle;
}

a:hover {
    transform: scale(1.1);
}

.social-links {
    display: inline-flex;
    margin-top: 15px;
}

.social-links a {
    text-decoration: none;
    /* font-size: calc(18px + .5vw); */
    margin-right: 15px;
    cursor: pointer;
}

li {
    list-style: none;
}

footer {
    margin: 0;
    padding-left: 5px;
    position: absolute;
    bottom: 0;
    display: flex;
}

footer p, footer button {
    margin: 0;
    font-size: calc(12px + .5vw);
}

@media screen and (max-width: 1000px) {
    body {
        font-size: calc(12px + .5vw);
    }

    .pending p {
        font-size: xx-small
    }
}