body {
    background-image: url("../images/chisholm_mod.jpg");
    background-attachment: fixed;
}

header {
    padding-top: 70px;
    padding-bottom: 20px;
}

main {
    padding-bottom: 20px;
}

footer {
    padding-bottom: 70px;
}

h1 {
    font-size: 6rem;
}

img {
    width: 300px;
}

section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.container {
    background-color: linen;
    border-radius: 25px;
    padding: 20px 20px 20px 20px;
}

.pinkshadow{
    text-shadow: 5px 5px 5px lightpink;
}

.greenshadow {
    text-shadow: 5px 5px 5px lightgreen;
}

.xmas {
    font-family: 'Mountains of Christmas';
}

.bigger {
    font-size: 4rem;
}

.italic {
    font-style: italic;
    font-size: 2rem;
}

.bold {
    font-weight: 700;   
}

.center {
    text-align: center;
}

.smaller {
    width: 200px;
}

.hide-text p.hover {
    opacity: 0;
}

.hide-text:hover p.hover {
    opacity: 1;
}

.rotate {
    transform: scaleX(-1);
}

.outlined-form {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 0 3pt 2pt lightgreen;
}

.outlined-form:hover {
    box-shadow: 0 0 3pt 2pt lightpink;
}

.footer {
    font-size: 3rem;
}

.mb-1 {
    margin-bottom: 10px;
}

.fullsize {
    width: 80%;
}