body {
    margin: 0;
    padding: 0;
    font-family:cursive;
    background-image:url(/IMAGES/back1.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.dropdown {
    margin: 0 auto;
}

nav {
    box-shadow: 0 9px 10px;
}

nav ul {
    padding: 0;
    margin: 0;
    float: right;
    margin-right: 30px;
}

nav ul li {
    position: relative;
    list-style: none;
    display: inline-block;

}

nav ul li a {
    display: block;
    padding: 0 15px;
    color:moccasin;
    text-decoration: none;
    line-height: 60px;
    font-size: 20px;
}

nav ul li a:hover {
    color:dodgerblue;
} 

nav ul ul {
    position: absolute;
    top: 60px;
    display: none;
}

nav ul li:hover > ul {
    display: block;

}

nav ul ul li {
    width: 150px;
    float: none;
    display: list-item;
    position: relative;

}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 150px;
}

.slidershow {
    width: 1000px;
    height: 500px;
    overflow: hidden;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.navigation{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform:translateX(-50%);
    display: flex;

}

.bar{
    width: 50px;
    height: 10px;
    border: 2px solid black;
    margin: 6px;
    cursor: pointer;
    transition: 0.4s;

}

.bar:hover {
    background: #fff;
}

input[name = "r"] {
    position: absolute;
    visibility: hidden;

}

.slides {
    width: 500%;
    height: 100%;
    display: flex;

}

.slide {
    width: 20%;
    transition: 0.6s;

}

.slide img {
    width: 100%;
    height: 100%;
}

#r1:checked ~ .s1 {
    margin-left: 0;
}

#r2:checked ~ .s1 {
    margin-left: -20%;
}

#r3:checked ~ .s1 {
    margin-left: -40%;
}

#r4:checked ~ .s1 {
    margin-left: -60%;
}


.logo {
    clip-path: circle();
}

.nav a {
    text-decoration: none;
    color: moccasin;
    display: flex;
    width: 84%;
    align-items: center;
    margin: auto;
    display: inline-block;
}

article {
    padding:10px 15px;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    font-weight: bold;
    color:seashell;
}

article img {
    clip-path: ellipse();
}

.pastoral h1{
    text-decoration: overline;
    text-align: center;
    color: mistyrose;
}

.reviews h1 {
    color: moccasin;
    text-decoration:overline;
}

.reviews img {
    clip-path: circle();
}

.reviews {
    display:flex;
    flex-direction: row;
}

.reviews p {
    color:cornsilk;
    font-weight: bold;
}

h2 {
    color: mistyrose;
    text-align: right;
    text-decoration: overline;
}

.smlinks ul li a {
    color: moccasin;
    font-style: oblique;
    text-decoration: none;
}

p{
    text-align: center;
    color: mistyrose;
    font-weight: bolder;
}