body {
    background: url("img/swampbackground.jpg");
    background-size: cover;
}

.jacquard-12-regular {
    font-family: "Jacquard 12", system-ui;
    font-weight: 400;
    font-style: normal;
}


h1 {
    font-family: "Jacquard 12";
    font-size: 80px;
}

.house {
    display:flex;
    justify-content: space-around;

}
.houseimage{
    width: 100%;
    animation: floatinghouse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes floatinghouse {
    0% {transform: translate(0,0px)};
    50% {transform: translate(0,15px)};
    100% {transform: translate(0,-0px)};
}

.navbar{
    display:flex;
    background-color: black;
    justify-content: space-evenly;
    padding: 20px;
}

p:only-child{
    font-family:"Jacquard 12";
    color:white;
}
