body {
 font-family: 'Didot', serif;
 font-size: large;
 --backgroundPink: rgb(253, 223, 223);
 --accentPink: rgb(252, 181, 181);
 --accentRed: rgb(87, 8, 8);
  background: var(--backgroundPink);
}

nav {
 background-color: var(--accentPink);
 font-size: larger;
}

.navbar-brand{
    font-size: x-large;
}

/* Link formatting */
a:link {
    color: black;
}
a:visited {
    color: black;
}
a:hover, a:active {
    color: var(--accentRed);
    font-weight: bold;
    text-decoration: none;
}

/* Contact buttons */
.fa {
    padding: 1rem;
    font-size: 1.5rem;
    text-align: center;
  }

/* For viewing bootstrap grid */
/*div[class="row"] {
    outline: 1px dotted black;
}

div[class^="col-"] {
    outline: 1px dotted black;
}*/