*{
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: lightcyan; */
    background-image: url(images/snow.webp);
}

.rightside{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    float: right;
    width: 50%;
    /* border: 3px solid rgb(249, 5, 5); */
    padding: 1px 2px 3px 2px;
    background-color: lightskyblue;
}
.leftside{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    float: left;
    width: 50%;
    /* border: 3px solid rgb(249, 5, 5); */
    padding: 1px 2px 3px 2px;
    background-color: lightskyblue;
}
.container{
    background-color: lightskyblue;
    margin: 10px 200px;
    max-width: 1024px;
    min-height: min-content;
    border: 1px solid lightcyan;
    padding: 10px;
    border-image: url(images/pawprint.png);
}
.columns {
    /* display: flex; */
    column-count: 3;
    padding-top: 3%;
    padding-bottom: 3%;
}
h1 {
    text-align: center;
}
.btn btn-outline-success me-2 {
    background-color: lightskyblue;
}
.btn btn-primary{
    color:darkblue;
    font-display: bold;
}
.btn {
    color: darkblue;
    background-color: lightskyblue;
    border-color: darkblue

}
nav ul {
    display: flex;
    justify-content: space-around;
    /* border: 3px solid rgb(249, 5, 5); */
    padding: 1px 2px 4px 2px;
    /* background-color: darkblue; */
}
nav ul li {
    list-style-type: none;
    margin-right: 1.8em;
    color: darkblue;
}
nav a {
    color: darkblue;
    background-color: lightskyblue;
    text-decoration: none;
    font-size: large;
}
nav a:hover {
    color:rgb(123, 71, 3);
    text-decoration: dashed;
}
img{
    border-radius: 5px;
}
.headerimage {
    background-image: url(images/summit_farms.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border: 1px solid lightcyan;
    border-radius: 5px;
}
footer{
    text-align: center;
    color: darkblue;
    font-size: 10px;
    background-color: lightskyblue;
    border-radius: 5px;
    padding: 1px 2px 3px 2px;
    
}