/* GENERAL */
/*NOTES: change placeholder colors, borders around nav links*/

body {
    font-family: 'Times New Roman', Times, serif;
    background-image: url("red-gingham.jpg");
    background-repeat: repeat;
    margin: 0;
    padding: 0;
}

p {
    color: black;
}

/* DESKTOP NAV */

nav, .navLinks {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
   background-image: url("cheetahprint-background.jpg");
    background-size: cover;
    border-bottom: 2px solid #fff7bf;
}

.navLinks {
    gap: .5rem;
    list-style: none;
    font-size: 1.5rem;
}

.navLinks a {
    color: #961313;
    text-decoration: none;
    padding: 10px 15px; /* Adds space inside the border */
    background-color: #5D0202; 
    border-radius: 5px;
}

.navLinks a:hover {
    color: #fff7bf;
    background-color: transparent;
    border: 2px solid #fff7bf;
}

.logo {
    font-size: 2rem;
    color: #fff7bf;
}

.logo:hover {
    cursor: default;
}

/* CONTAINERS */


.container {
    /*(c) solielios*/
    border-width: 12px;
    border-style: solid;
    border-image: url("https://i.imgur.com/Kh6qtcn.png") 11 fill round;       
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: auto;
    width: 884px;
    height: 665px;
    position: relative;
    padding: 0px;
    z-index: 4;
}