/* Overriding Bootstrap root value for links */
:root {
    --bs-link-hover-color: none;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-body {
    margin-top: 2em;
    color: var(--primary-text);
}

.form-container {
    display: flex;
    justify-content: center;
    width: 70%;
}

form {
    display: flex;
    justify-content: center;
}

.form-input-non-message {
    width: 70%;
    margin: 0;
    padding: 0;
}

.form-input-message {
    width: 83%;
    margin-top: 15px;
}

/* Replacing Bootstrap root values */
.btn-primary {
    background-color: var(--primary-button);
    color: var(--primary-grey);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-button-hover);
    color: white;
}

/* Split screen for 13" laptop 640px x 688px */
@media (min-width: 630px) and (max-width: 650px) {
}

/* Galaxy S21 dimensions 360px x 800px */
/* Actual CSS 412px x 828px */
/* This query covers a range of other similar devices */
@media (max-height: 840px) and (width < 500px) {
    .form-container {
        width: 100%;
    }
}
