.contact {
    background: linear-gradient(to bottom, rgb(21, 64, 71), rgb(85, 163, 185));
    height: 700px;
}
.contact h1 {
    text-align: center;
    font-size: 200%;
    font-weight: bold;
    padding: 60px 0px 30px 0px;
    margin: 0;
}

/* #region Email Form */
.c-email {
    text-align: center;
    flex-direction: column;
    gap: 30px;
}
.c-email p {
    font-size: 120%;
    word-spacing: 10%;
}
.c-email form {
    margin-bottom: 40px;
    gap: 50px;
    display: flex;
    justify-content: center;
}
.c-submit {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    padding: 4px 15px;
    width: 20%;
    max-width: 150px;
    font-size: 120%;
    min-width: 100px;
    height: 100%;
    border: 2px solid black;
    cursor: pointer;
    transition: color 0.5s;
    transition: background-color 0.5s;
}
.c-submit:hover {
    transition: color 1s;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transition: color 0.5s;
    transition: background-color 0.5s;
}
.c-emailinput input{
    border-radius: 5px;
    border: 2px solid black;
    margin: 0;
    padding: 0 0 0 18px;
    height: 100%;
    font-size: 100%;
    font-family: Georgia, 'Times New Roman', Helvetica, serif;
    box-sizing: border-box;
}
.c-emailinput {
    display: inline-block;
    margin: 0;
    width: 220px;
}
.c-emailinput input:focus {
    outline: none;
}
.c-emailinput input::placeholder {
    color: rgb(92, 92, 92);
}
/* #endregion Email Form */

.links {
    justify-content: space-evenly;
}

.links h2 {
    font-size: 150%;
    margin-bottom: 20px;
}
@media screen and (min-width: 1600px) {
    li img {
        width: 50px;
    }
    .links h2 {
        font-size: 200%;
    }
}
@media screen and (max-width: 780px) {
    .footer {
        flex-direction: column;
        height: 275px;
    }
    .mookiecard {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: 200px;
    }
}
@media screen and (max-width: 560px) {
    .logo {
        width: 50px;
    }
    .contact {
        height: 780px;
    }
    .contact h1 {
        font-size: 150%;
    }
    .c-email p {
        font-size: 100%;
        padding: 0px 10px;
    }
    .c-email form {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        margin-bottom: 10px;
    }
    .c-submit {
        margin-top: 40px;
    }
    .links {
        flex-direction: column;
        gap: 20px;
    }
    .links h2 {
        font-size: 180%;
    }

}
@media screen and (max-width: 350px) {
    .logo {
        display: none;
    }
    .footer div {
        font-size: 125%;
    }
    .c-email p {
        font-size: 90%;
    }
}