.title {
    font-size: 1.5em;
    font-weight: bold;
    color: #29426a;
    padding-top: 20px;
    padding-bottom: 5px;
}
a {
    text-decoration: none;
    color: #29426a;
}
a:hover {
    text-decoration: none;
}
img {
    filter: drop-shadow(10px 10px 4px #888888);
}
.button {
    font-weight: bold;
    color: white;
    background-color: #c46428;
    border-radius: 5px;
    padding:10px;
    cursor: pointer;
}
.button:hover {
    color: white;
    background-color: #29426a;
}
.background {
    background-color: black;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
}
.logo {
    height: 100px;
    width: 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url("/wp-content/uploads/2020/11/loadingLogo.gif");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 50;
    display: none;
}
.socialMediaLogo
{
    height: 50px;
    width: 50px;
    fill: rgb(196,100,40);
    padding-top: 10px;
    transition: filter 0.5s;
}

.socialMediaLogo:hover
{
    filter: drop-shadow(3px 3px 2px black);
}