@charset "utf-8";

/* contact-styles.css for Capstone in C6P2 Web Development Internship - Brittany Thompson, January 5, 2026 */

address,
p {
    font-size: large;
}

fieldset {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2%;
    background-color: rgb(255, 250, 242);
    border: 4px solid rgb(100, 61, 61);
    border-radius: 10px;
    padding: 2%;
    margin: 2% 0;
}

legend {
    font-size: 2em;
}

input,
select,
textarea {
    font-family: "Labrada", sans-serif;
}

button input,
select {
    border: 0;
    font-family: "Labrada", sans-serif;
}

#buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    margin: 2% 0;
}

#buttons input {
    border: 3px solid rgb(100, 61, 61);
    border-radius: 10px;
    padding: 0.8%;
    width: 50%;
}

/* Google map container is map-embed and map itself is the iframe */
#map-embed {
    overflow: hidden;
    position: relative;
    /* this is an anchor point of map, parent container is relative, child is absolute */
    height: 25em;
}

iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    /* takes element out of natural flow of the page so you can control where it is */
    border: 5px solid rgb(100, 61, 61);
    border-radius: 10px;
}